This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
test #359
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 | |
- feature/* | |
- bugfix/* | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install haxe | |
run: ./make install | |
- name: transpile haxe into languages | |
run: ./make | |
- name: run tests | |
run: ./make tests |