From 2b6ddaffee610f8c778ebdb85fe55a98530b95be Mon Sep 17 00:00:00 2001 From: Coder of Salvation / Leon van Kammen Date: Thu, 9 Mar 2023 21:41:57 +0100 Subject: [PATCH] added test.yml testrunner --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..d2f315e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +on: + push: + branches: + - main + - feature/* + - bugfix/* + +jobs: + comment: + runs-on: ubuntu-latest + steps: + - name: install haxe + run: ./make install + - name: transpile haxe into languages + run: ./make + - name: run tests + run: ./make runtest