diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/main.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3a56fe2 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,26 @@ +name: CI +on: [push, pull_request] +jobs: + test: + runs-on: ${{matrix.os}} + + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + fail-fast: false + + steps: + - uses: actions/checkout@v2 + + - name: Setup + run: | + node -v + npm install --global lix + lix install haxe 4.2.3 --global + lix download + npm ci + haxelib install tests.hxml --always + + - name: Test + run: | + haxe tests.hxml |
