From 935505a515d05a65907254fe1d822c41fb07154f Mon Sep 17 00:00:00 2001 From: RblSb Date: Tue, 7 Sep 2021 21:46:55 +0300 Subject: Add CI --- .github/workflows/main.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/main.yml (limited to '.github/workflows') 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 -- cgit v1.2.3