We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50de8a commit e23accdCopy full SHA for e23accd
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
9
strategy:
10
matrix:
11
os: [ubuntu-latest, macOS-latest]
12
- ghc: ["9.6", "9.8", "9.10"]
+ ghc: ["9.6.6", "9.8", "9.10"]
13
14
steps:
15
- uses: actions/checkout@v4
@@ -29,11 +29,11 @@ jobs:
29
- run: make build
30
- run: make test
31
32
- - if: startsWith(github.ref, 'refs/tags') && matrix.ghc == '9.6'
+ - if: startsWith(github.ref, 'refs/tags') && startsWith(matrix.ghc, '9.8')
33
run: make artifact
34
35
- uses: actions/upload-artifact@v4
36
- if: startsWith(github.ref, 'refs/tags') && matrix.ghc == '9.6'
+ if: startsWith(github.ref, 'refs/tags') && startsWith(matrix.ghc, '9.8')
37
with:
38
path: artifacts/*
39
name: artifacts-${{ runner.os }}
0 commit comments