Update: witherable-0.5 #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Haskell CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-and-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
ghc: ['8.10.7', '9.0.2', '9.2.7', '9.4.5', '9.6.2'] | |
name: Build on GHC ${{ matrix.ghc }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.ghcup | |
~/.cabal | |
dist-newstyle | |
key: ${{ runner.os }}-${{ matrix.ghc }}-env | |
- name: Setup Haskell | |
run: | | |
ghcup install ghc ${{ matrix.ghc }} | |
ghcup set ghc ${{ matrix.ghc }} | |
ghcup install cabal latest | |
ghcup set cabal latest | |
- name: Install dependencies | |
run: | | |
cabal update | |
cabal build --only-dependencies --enable-tests --enable-benchmarks | |
- name: Build | |
run: cabal v2-build --enable-tests --enable-benchmarks all | |
- name: Run tests | |
run: cabal v2-test |