Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit d1bbdb4

Browse files
committed
Simpler workflow
1 parent 084f9d5 commit d1bbdb4

2 files changed

Lines changed: 6 additions & 15 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,10 @@ jobs:
1919
- name: Setup Haxe & Haxelib
2020
uses: krdlab/setup-haxe@v1
2121
with:
22-
haxe-version: 4.2.0
22+
haxe-version: 4.2.3
2323

2424
- name: Get Haxe Deps
25-
run: |
26-
haxelib install iterators
27-
haxelib install haxe-strings
28-
haxelib install safety
29-
haxelib install compiletime
25+
run: haxelib install deploy.hxml --always
3026

3127
# Build haxe code to javascript
3228
- name: Build

.github/workflows/tests.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,12 @@ jobs:
2121
- uses: actions/checkout@v2
2222

2323
- name: Setup Haxe environment
24-
uses: krdlab/setup-haxe@v1.1.5
24+
uses: krdlab/setup-haxe@v1
2525
with:
26-
haxe-version: 4.2.0
26+
haxe-version: 4.2.3
2727

28-
- name: Setup Haxe dependencies
29-
run: |
30-
haxelib install utest
31-
haxelib install iterators
32-
haxelib install haxe-strings
33-
haxelib install safety
34-
haxelib install compiletime
28+
- name: Install dependencies
29+
run: haxelib install test.hxml --always
3530

3631
- name: Run tests
3732
run: haxe test.hxml

0 commit comments

Comments
 (0)