[fix] disable example executables build for GHC 9.4.1 in CI.

This commit is contained in:
Yamada Ryo 2024-11-04 00:59:32 +09:00
parent 29245f0761
commit 5ac7def6ba
No known key found for this signature in database
GPG Key ID: AAE3C7A542B02DBF

View File

@ -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