Don't use operators introduced in Haxe 4.3. #160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
haxe-version: [4.2.5, 4.3.1] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: ${{ matrix.haxe-version }} | |
- run: haxelib install utest | |
- name: Run tests | |
run: haxe tests.hxml --interp | |
- name: Run tests (map storage) | |
run: haxe tests.hxml --interp -D echoes_storage=Map | |
- name: Run tests (stable array order) | |
run: haxe tests.hxml --interp -D echoes_stable_order |