Removed GHC 8.8 from build matrix #82
Workflow file for this run
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: CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ghc: ['8.10'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Haskell | |
uses: haskell/actions/setup@v2 | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: 'latest' | |
- uses: actions/cache@v2.1.4 | |
with: | |
path: ~/.cabal | |
key: cabal--${{ matrix.ghc }}-${{ hashFiles('*/*.cabal') }} | |
restore-keys: | | |
cabal--${{ matrix.ghc }}-${{ hashFiles('*/*.cabal') }} | |
cabal--${{ matrix.ghc }}- | |
cabal- | |
- run: cabal update | |
- run: cabal configure --enable-tests -fexample | |
- run: cabal build all --only-dependencies | |
- run: cabal build all | |
- run: cabal test all | |
env: | |
ROLLBAR_TOKEN: ${{ secrets.ROLLBAR_TOKEN }} |