2023-03-09 21:41:57 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- feature/*
|
|
|
|
- bugfix/*
|
2023-03-09 21:49:04 +01:00
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
2023-03-09 21:41:57 +01:00
|
|
|
|
|
|
|
jobs:
|
2023-03-09 21:52:36 +01:00
|
|
|
test:
|
2023-03-09 22:18:10 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2023-03-09 21:41:57 +01:00
|
|
|
steps:
|
2023-03-09 21:52:36 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: install haxe
|
2023-03-09 22:16:56 +01:00
|
|
|
run: ./make install
|
2023-03-09 21:52:36 +01:00
|
|
|
- name: transpile haxe into languages
|
|
|
|
run: ./make
|
|
|
|
- name: run tests
|
|
|
|
run: ./make runtest
|