Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 4 additions & 23 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,6 @@ on:
- cron: 0 0 * * *

jobs:
stack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: stack dot --global-hints --resolver nightly --lock-file read-write
- uses: actions/cache@v4
with:
path: ~/.stack
key: ${{ runner.os }}-${{ hashFiles('stack.yaml.lock') }}
- run: stack test --resolver nightly --haddock --no-haddock-deps

build:
name: ${{ matrix.os }} / GHC ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
Expand All @@ -37,24 +26,16 @@ jobs:
os:
- ubuntu-latest
ghc:
- '8.10'
- '9.0'
- '9.2'
- '9.4'
- '9.6'
- '9.8'
- '9.10'
- '9.12'
include:
- os: macos-latest
ghc: '9.12'
- os: windows-latest
ghc: '9.12'
steps:
- run: pipx install httpbin
- uses: actions/checkout@v6
- uses: hspec/setup-haskell@v1
with:
ghc-version: ${{ matrix.ghc }}
- run: sudo apt-get update
- run: which httpbin
- run: httpbin
- uses: sol/run-haskell-tests@v2
with:
caching: true
Expand Down
Loading