Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortex2Oblivion authored Dec 11, 2024
1 parent 41bb559 commit 1897540
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: CI build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
buildw-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
run: |
haxelib --quiet git hxpy https://github.com/Vortex2Oblivion/flixel-raylib
cd test
haxe build.hxml
build-macos:
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.6

- name: Compiling
run: |
haxelib --quiet git hxpy https://github.com/Vortex2Oblivion/flixel-raylib
cd test
haxe build.hxml
build-linux:
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.6

- name: Compiling
run: |
haxelib --quiet git hxpy https://github.com/Vortex2Oblivion/flixel-raylib
cd test
haxe build.hxml

0 comments on commit 1897540

Please sign in to comment.