Skip to content

Use final where possible. #149

Use final where possible.

Use final where possible. #149

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