From 9f0ddf5195698a0b518a10e30b3126807cf9e9e7 Mon Sep 17 00:00:00 2001 From: Vortex <73261680+Vortex2Oblivion@users.noreply.github.com> Date: Thu, 23 Nov 2023 16:19:26 +0000 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 40 +++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e668f37..d829dbe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,7 @@ on: pull_request: branches: [ master ] jobs: - demo1: + demo1win: runs-on: windows-latest steps: - name: Checkout @@ -23,6 +23,44 @@ jobs: haxelib --quiet git hxpy https://github.com/Vortex2Oblivion/hxpy cd "test/demos/running code without a file" haxe build.hxml + + demo1mac: + runs-on: macos-latest + steps: + - name: Checkout + uses: actions/checkout@main + with: + submodules: true + + - name: Setup Haxe + uses: krdlab/setup-haxe@master + with: + haxe-version: 4.3.2 + + - name: Compiling + run: | + haxelib --quiet git hxpy https://github.com/Vortex2Oblivion/hxpy + cd "test/demos/running code without a file" + haxe build.hxml + + demo1linux: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@main + with: + submodules: true + + - name: Setup Haxe + uses: krdlab/setup-haxe@master + with: + haxe-version: 4.3.2 + + - name: Compiling + run: | + haxelib --quiet git hxpy https://github.com/Vortex2Oblivion/hxpy + cd "test/demos/running code without a file" + haxe build.hxml demo2: runs-on: windows-latest steps: