Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortex2Oblivion authored Nov 23, 2023
1 parent f30bbbf commit 9f0ddf5
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
branches: [ master ]
jobs:
demo1:
demo1win:
runs-on: windows-latest
steps:
- name: Checkout
Expand All @@ -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:
Expand Down

0 comments on commit 9f0ddf5

Please sign in to comment.