-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (44 loc) · 1.11 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: continuous-integration
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Fetch sources
uses: actions/checkout@v4
- name: Set up Lix
uses: lix-pm/setup-lix@master
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: npm
node-version: 22
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/haxe
~/AppData/Roaming/haxe
key: haxe-${{runner.os}}-lix-${{hashFiles('.haxerc', 'haxe_libraries/*.hxml')}}
restore-keys: haxe-${{runner.os}}-lix-
- name: Install dependencies
run: |
lix download
npm ci
- name: Run tests
run: haxe test.hxml
run:
needs: test
runs-on: ${{matrix.platform}}
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
steps:
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- uses: cedx/setup-ant@main
with:
optional-tasks: true
- run: ant -version