File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 21
21
fail-fast : false
22
22
matrix :
23
23
platform : [ubuntu-latest, macos-latest, windows-latest]
24
- bids-validator : [stable, dev, legacy]
24
+ bids-validator : [stable, main, dev, legacy]
25
25
26
26
runs-on : ${{ matrix.platform }}
27
27
@@ -49,14 +49,22 @@ jobs:
49
49
deno install -Agf -n bids-validator jsr:@bids/validator
50
50
shell : bash
51
51
52
- - name : Install BIDS validator (dev )
53
- if : matrix.bids-validator == 'dev '
52
+ - name : Install BIDS validator (main )
53
+ if : matrix.bids-validator == 'main '
54
54
run : |
55
55
# If unmerged validator PRs are needed for testing, you can use
56
56
# https://github.com/<FORK>/bids-validator/raw/<BRANCH>/bids-validator/src/bids-validator.ts
57
57
deno install -Agf https://github.com/bids-standard/bids-validator/raw/deno-build/bids-validator.js
58
58
shell : bash
59
59
60
+ - name : Install BIDS validator (dev)
61
+ if : matrix.bids-validator == 'dev'
62
+ run : |
63
+ git clone -b dev https://github.com/bids-standard/bids-validator/ ../bids-validator
64
+ cd ../bids-validator
65
+ deno install -Agf src/bids-validator.ts
66
+ shell : bash
67
+
60
68
- name : Install BIDS validator (legacy)
61
69
if : " matrix.bids-validator == 'legacy'"
62
70
run : |
You can’t perform that action at this time.
0 commit comments