-
-
Notifications
You must be signed in to change notification settings - Fork 6
59 lines (46 loc) · 1.08 KB
/
workflow.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Test Plugin
on:
pull_request:
push:
schedule:
- cron: 0 1 * * MON
jobs:
test-plugin:
name: Test Plugin
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: asdf-vm/actions/plugin-test@v3
with:
command: haxe --version
link-test:
name: Link Test
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: asdf_setup
uses: asdf-vm/actions/setup@v3
- name: Install plugins and tools
run: |
asdf plugin add haxe $GITHUB_WORKSPACE
asdf plugin add neko
asdf install haxe 4.1.3
asdf install neko 2.3.0
asdf global haxe 4.1.3
asdf global neko 2.3.0
- name: Run link command
run: asdf haxe neko dylibs link
- name: Run haxelib command
run: haxelib version