Skip to content

Commit e23accd

Browse files
committed
Try different GHC 9.6 version
1 parent a50de8a commit e23accd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macOS-latest]
12-
ghc: ["9.6", "9.8", "9.10"]
12+
ghc: ["9.6.6", "9.8", "9.10"]
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -29,11 +29,11 @@ jobs:
2929
- run: make build
3030
- run: make test
3131

32-
- if: startsWith(github.ref, 'refs/tags') && matrix.ghc == '9.6'
32+
- if: startsWith(github.ref, 'refs/tags') && startsWith(matrix.ghc, '9.8')
3333
run: make artifact
3434

3535
- uses: actions/upload-artifact@v4
36-
if: startsWith(github.ref, 'refs/tags') && matrix.ghc == '9.6'
36+
if: startsWith(github.ref, 'refs/tags') && startsWith(matrix.ghc, '9.8')
3737
with:
3838
path: artifacts/*
3939
name: artifacts-${{ runner.os }}

0 commit comments

Comments
 (0)