Skip to content

Commit

Permalink
Actually use the appropriate resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
fimad authored Dec 8, 2023
1 parent 5697ab3 commit 541f69e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
build:
name: GHC ${{ matrix.stackage-version }} on ${{ matrix.os }}
name: Stack resolver ${{ matrix.stackage-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -71,10 +71,13 @@ jobs:
${{ runner.os }}-stack-work-
- name: Build
run: stack build --test --bench
run: stack build --resolver ${{ matrix.stackage-version }}

- name: Run tests
run: stack test
run: stack test --resolver ${{ matrix.stackage-version }}

- name: Run benchmarks
run: stack bench --resolver ${{ matrix.stackage-version }}

- name: Build documentation
run: stack haddock
run: stack haddock --resolver ${{ matrix.stackage-version }}

0 comments on commit 541f69e

Please sign in to comment.