1 parent 5ad0385 commit b197ee0Copy full SHA for b197ee0
2 files changed
.github/workflows/haskell.yml
@@ -6,11 +6,11 @@ jobs:
6
matrix:
7
host: ['macos-latest']
8
runs-on: ${{ matrix.host }}
9
- name: GHC on ${{ matrix.host }}
+ name: Stack on ${{ matrix.host }}
10
steps:
11
- uses: actions/checkout@v6
12
- - run: brew install pcre
13
- uses: haskell-actions/setup@v2
14
- - run: cabal build all
15
- - run: cabal test all --test-show-details=streaming
+ with:
+ enable-stack: true
+ - run: stack test
16
stack.yaml
@@ -3,5 +3,9 @@ system-ghc: true
3
compiler-check: newer-minor
4
5
extra-deps:
-- hscurses-1.5.0.0@sha256:5bd0d1840ede4a99becdbb7a6b68ee6abe14f4b4a4cdfce373fcf46b9e119650,3851
+ - hscurses-1.5.0.0@sha256:5bd0d1840ede4a99becdbb7a6b68ee6abe14f4b4a4cdfce373fcf46b9e119650,3851
+
+flags:
+ pcre-light:
+ use-pkg-config: true
0 commit comments