xrfragment/.github/workflows/test.yml

23 lines
374 B
YAML
Raw Permalink Normal View History

2023-03-31 17:32:50 +02:00
name: test
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
2023-03-17 16:25:45 +01:00
run: ./make tests