Skip to content

chore(deps): update semantic-release-hackage to 1.0.2 #45

chore(deps): update semantic-release-hackage to 1.0.2

chore(deps): update semantic-release-hackage to 1.0.2 #45

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
workflow_call:
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
haskell:
strategy:
matrix:
ghc:
- "8.10"
- "8.4.3"
- "9.4.7"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Haskell tooling
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: "3.6"
- name: Configure project
run: cabal configure --enable-tests
- name: Build project
run: cabal build
- name: Run tests
run: cabal test --test-show-details=direct
- name: Check documentation
run: cabal haddock