mirror of
https://github.com/sayo-hs/heftia.git
synced 2024-11-22 18:36:15 +03:00
[fix] disable example executables build for GHC 9.4.1 in CI.
This commit is contained in:
parent
29245f0761
commit
5ac7def6ba
7
.github/workflows/haskell.yml
vendored
7
.github/workflows/haskell.yml
vendored
@ -41,7 +41,14 @@ jobs:
|
||||
run: |
|
||||
cabal update
|
||||
cabal build --only-dependencies --enable-tests --disable-benchmarks all
|
||||
|
||||
- name: Build
|
||||
if: ${{ matrix.ghc != '9.4.1' }}
|
||||
run: cabal build --enable-tests --disable-benchmarks all
|
||||
|
||||
- name: Build
|
||||
if: ${{ matrix.ghc == '9.4.1' }}
|
||||
run: cabal build --enable-tests --disable-benchmarks heftia heftia-effects:heftia-effects heftia-effects:test
|
||||
|
||||
- name: Run tests
|
||||
run: cabal test --test-show-details=direct all
|
||||
|
Loading…
Reference in New Issue
Block a user