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 616f913 commit ab6bbcfCopy full SHA for ab6bbcf
.github/workflows/flags.yml
@@ -43,7 +43,11 @@ jobs:
43
strategy:
44
fail-fast: true
45
matrix:
46
- ghc: [ "8.10.7"
+ ghc: [ "9.2.1"
47
+ , "9.0.2"
48
+ , "8.10.7"
49
+ , "8.8.4"
50
+ , "8.6.5"
51
]
52
os: [ "ubuntu-latest"
53
@@ -65,7 +69,9 @@ jobs:
65
69
- name: Build `ghcide` with flags
66
70
run: cabal v2-build ghcide --flags="ghc-patched-unboxed-bytecode test-exe executable bench-exe"
67
71
68
- - name: Build with pedantic (-WError)
72
+ # we have to clean up warnings for 9.0 and 9.2 before enable -WAll
73
+ - if: matrix.ghc != '9.0.2' && matrix.ghc != '9.2.1'
74
+ name: Build with pedantic (-WError)
75
run: cabal v2-build --flags="pedantic"
76
77
flags_post_job:
0 commit comments