File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 9
9
workflow_dispatch :
10
10
11
11
jobs :
12
- test :
13
- runs-on : macos-latest
12
+ test-Intel :
13
+ runs-on : macos-12
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v3
17
+ - name : Install Nim with Homebrew
18
+ run : brew install nim
19
+ - name : Install dependencies
20
+ run : nimble install -y arraymancer nimpy
21
+ - name : Compile nimplex
22
+ run : nim c -d:release nimplex.nim
23
+ - name : Run grid tests
24
+ run : nim c -r -d:release tests/grid.nim
25
+ - name : Run graph tests
26
+ run : nim c -r -d:release tests/graph.nim
27
+ - name : Run CLI tests
28
+ run : nim c -r -d:release tests/cli.nim
29
+ test-M1 :
30
+ runs-on : macos-14
14
31
steps :
15
32
- name : Checkout
16
33
uses : actions/checkout@v3
Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
test :
13
- runs-on : ubuntu -latest
13
+ runs-on : windows -latest
14
14
steps :
15
15
- name : Checkout
16
16
uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments