Sync files and metadata (#282) #613
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: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
haxe-version: [4.2.5] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Setup Haxe environment | |
uses: krdlab/setup-haxe@3437f1adfca98b22815d926271cc39faaf996f25 | |
with: | |
haxe-version: ${{ matrix.haxe-version }} | |
- name: Install testing framework | |
run: haxelib install buddy | |
- name: Install datetime for gigasecond | |
run: haxelib install datetime | |
- name: Compile test | |
run: bin/build.sh |