We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 904a195 commit 0e1bdd5Copy full SHA for 0e1bdd5
1 file changed
.github/workflows/ci.yml
@@ -18,7 +18,7 @@ jobs:
18
- '9.8'
19
- '9.10'
20
- '9.12'
21
- # - '9.14'
+ - '9.14'
22
include:
23
- ghc_version: '9.8.1'
24
oldest: true
@@ -41,6 +41,22 @@ jobs:
41
cabal configure
42
--enable-test
43
--test-show-details=streaming
44
+ -
45
+ # TODO: Remove these exclusions as packages are updated with 9.14
46
+ if: ${{ matrix.ghc_version == '9.14' }}
47
+ name: Add 9.14 flags
48
+ run: >
49
+ cabal configure
50
+ --enable-append
51
+ --allow-newer='aeson:*'
52
+ --allow-newer='boring:*'
53
+ --allow-newer='indexed-traversable:*'
54
+ --allow-newer='indexed-traversable-instances:*'
55
+ --allow-newer='ordered-containers:*'
56
+ --allow-newer='semialign:*'
57
+ --allow-newer='these:*'
58
+ --allow-newer='time-compat:*'
59
+ --allow-newer='uuid-types:*'
60
-
61
if: ${{ matrix.oldest }}
62
name: Use oldest dependencies
0 commit comments