Update main.yml #23
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: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-windows: | |
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 Ndlls | |
run: | | |
haxelib git flixel-raylib https://github.com/Vortex2Oblivion/flixel-raylib | |
haxelib install lime | |
haxelib run lime rebuild ndlls/memory windows | |
- name: Compile Test Project | |
run: | | |
cd test | |
haxe build.hxml |