Skip to content

revisit supported GHC versions and drop broken travis/appveyor configs #11

revisit supported GHC versions and drop broken travis/appveyor configs

revisit supported GHC versions and drop broken travis/appveyor configs #11

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ghc: ['9.8.2', '9.6.3', '9.4.7']
name: Haskell GHC ${{ matrix.ghc }}
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
ghc-version: ${{ matrix.ghc }}
- uses: actions/cache@v2
with:
path: |
~/.cabal
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('**/*.cabal','**/cabal.project') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-
${{ runner.os }}-
- run: cabal update
- run: cabal build
- run: cabal test
- run: cabal bench