Skip to content

Commit

Permalink
Merge pull request #2 from Geokureli/ci
Browse files Browse the repository at this point in the history
Add CI
  • Loading branch information
Geokureli authored Jan 2, 2025
2 parents f49ac06 + 42c763f commit 073c7ce
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on:
push:
pull_request:
workflow_dispatch:
repository_dispatch:
schedule:
- cron: '0 4 * * *'

jobs:
build:
# strategy:
# matrix:
# haxe-version: ["4.3.6"]
# fail-fast: false
# runs-on: ubuntu-latest
runs-on: macos-13
steps:
# - run: sudo apt-get update

- uses: actions/checkout@v4

- uses: krdlab/setup-haxe@v1
with:
# haxe-version: ${{matrix.haxe-version}}
haxe-version: "4.3.4"

- name: Set HAXEPATH
run: |
echo "HAXEPATH=$HAXE_STD_PATH/.." >> $GITHUB_ENV
- name: Build test
run: |
echo "Building test"
haxe -cp test/src -cp lib -D analyzer-optimize -main Main --interp

0 comments on commit 073c7ce

Please sign in to comment.