xrfragment/.github/workflows/test.yml

21 lines
365 B
YAML
Raw Normal View History

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 21:41:57 +01:00
runs-on: ubuntu-latest
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