We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9515a9 commit 3e36f52Copy full SHA for 3e36f52
1 file changed
.github/workflows/build.yml
@@ -49,6 +49,9 @@ jobs:
49
strategy:
50
matrix:
51
ghc: ['8.0', '8.10', '9.0.1', 'latest']
52
+ include:
53
+ - ghc: 'latest'
54
+ cabal_flags: '--allow-newer'
55
# If one version fails, we still want the status of the others
56
fail-fast: false
57
steps:
@@ -71,7 +74,7 @@ jobs:
71
74
- name: Build and run tests
72
75
run: |
73
76
cd source
- cabal test
77
+ cabal test ${{ matrix.cabal_flags }}
78
79
build_source:
80
name: Build
0 commit comments