diff options
| author | RblSb <msrblsb@gmail.com> | 2021-09-07 21:46:55 +0300 |
|---|---|---|
| committer | RblSb <msrblsb@gmail.com> | 2021-09-08 19:50:45 +0300 |
| commit | 935505a515d05a65907254fe1d822c41fb07154f (patch) | |
| tree | 7663affdfdd3f59a4283a91539c4a3d034f3fb87 /.github | |
| parent | 9f819388fbcdd07b6dc85fcf87fd2d6661b61bc3 (diff) | |
Add CI
Diffstat (limited to '.github')
| -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 |
