File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,17 +3,31 @@ on: [push, pull_request]
33jobs :
44 ubuntu :
55 runs-on : ubuntu-latest
6+ strategy :
7+ fail-fast : false
8+ matrix :
9+ nim-version : ["2.2.10", "1.6.6"]
610 steps :
711 - uses : actions/checkout@v5
812 - run : sudo apt-get update && sudo apt-get install libhts-dev bcftools
9- - run : echo /home/linuxbrew/.linuxbrew/bin >> $GITHUB_PATH
10- - run : brew install nim
13+ - uses : jiro4989/setup-nim-action@v2
14+ with :
15+ nim-version : ${{ matrix.nim-version }}
16+ - run : nimble install -y
1117 - run : nimble test
1218 mac :
1319 runs-on : macos-latest
20+ strategy :
21+ fail-fast : false
22+ matrix :
23+ nim-version : ["2.2.10", "1.6.6"]
1424 steps :
1525 - uses : actions/checkout@v5
16- - run : brew install nim htslib bcftools
26+ - uses : jiro4989/setup-nim-action@v2
27+ with :
28+ nim-version : ${{ matrix.nim-version }}
29+ - run : brew install htslib bcftools
1730 - run : sed -i "" -e "s/nim c/nim c --passL:-Wl,-rpath,\/opt\/homebrew\/opt\/htslib\/lib/" slivar.nimble
1831 - run : sed -i "" -e "s/nim c/nim c --passL:-Wl,-rpath,\/opt\/homebrew\/opt\/htslib\/lib/" tests/functional-tests.sh
32+ - run : nimble install -y
1933 - run : nimble test
Original file line number Diff line number Diff line change 1+ v0.3.4
2+ ======
3+ + nim v2 compat
4+
15v0.3.3
26======
37+ add GQs to tsv output
You can’t perform that action at this time.
0 commit comments