Skip to content

Update(README): Thesis link #17

Update(README): Thesis link

Update(README): Thesis link #17

Workflow file for this run

on: [push, pull_request]
name: ci
jobs:
build:
runs-on: ubuntu-latest
name: Build and test Haskell project
strategy:
fail-fast: false
matrix:
cabal: ["latest"]
ghc: ["latest", "9.0", "8.10", "8.8"]
env:
CONFIG: "--enable-tests --enable-benchmarks"
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/[email protected]
id: setup-haskell-cabal
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- uses: rwe/actions-hlint-setup@v1
with:
version: '3.3.4'
- run: cabal v2-update
- run: cabal v2-freeze $CONFIG
- uses: actions/cache@v2
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-
- run: cabal v2-build $CONFIG
- uses: rwe/actions-hlint-run@v2
with:
path: '["src/", "tests/"]'
fail-on: error
- run: cabal v2-run test -- +RTS -N -RTS
env:
TASTY_QUICKCHECK_TESTS: 1_000