File tree Expand file tree Collapse file tree 3 files changed +953
-3
lines changed Expand file tree Collapse file tree 3 files changed +953
-3
lines changed Original file line number Diff line number Diff line change 55 push :
66
77jobs :
8- tests :
8+ flake-check :
99 runs-on : ubuntu-latest
10+ strategy :
11+ fail-fast : false
1012 steps :
1113 - uses : actions/checkout@v3
1214 - uses : cachix/install-nix-action@v18
1315 with :
1416 extra_nix_config : |
1517 access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
16-
1718 - run : nix flake check
1819
20+ tests :
21+ name : ${{ matrix.os }} / Julia ${{ matrix.test_depot }}
22+ runs-on : ${matrix.os}
23+ strategy :
24+ fail-fast : false
25+ matrix :
26+ os : [ubuntu-latest] # macos-latest
27+ test_depot :
28+ - " 1.8.3"
29+ - " 1.6.6"
30+ steps :
31+ - uses : actions/checkout@v3
32+ - uses : cachix/install-nix-action@v18
33+ with :
34+ extra_nix_config : |
35+ access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
1936 - run : |
20- cd test_depots/1.8.3
37+ cd test_depots/${{matrix.test_depot}}
2138 nix run ..
You can’t perform that action at this time.
0 commit comments