fix workflows #119
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
demo1: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
submodules: true | |
- name: Setup Haxe | |
uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: 4.3.6 | |
- name: Compiling | |
run: | | |
haxelib git hxpy https://github.com/Vortex2Oblivion/hxpy | |
cd "test/simple example" | |
haxe build.hxml | |
demo2: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
submodules: true | |
- name: Setup Haxe | |
uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: 4.3.6 | |
- name: Compiling | |
run: | | |
haxelib git hxpy https://github.com/Vortex2Oblivion/hxpy | |
cd "test/reading from a file" | |
haxe build.hxml | |
demo3: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
submodules: true | |
- name: Setup Haxe | |
uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: 4.3.6 | |
- name: Compiling | |
run: | | |
haxelib git hxpy https://github.com/Vortex2Oblivion/hxpy | |
cd "test/very high level embedding" | |
haxe build.hxml | |
demo4: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
submodules: true | |
- name: Setup Haxe | |
uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: 4.3.6 | |
- name: Compiling | |
run: | | |
haxelib git hxpy https://github.com/Vortex2Oblivion/hxpy | |
cd "test/pure embedding" | |
haxe build.hxml | |