Skip to content

Don't use operators introduced in Haxe 4.3. #160

Don't use operators introduced in Haxe 4.3.

Don't use operators introduced in Haxe 4.3. #160

Workflow file for this run

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