Skip to content

chore(deps): update semantic-release-hackage to 1.1.2 yarn.lock (#55) #61

chore(deps): update semantic-release-hackage to 1.1.2 yarn.lock (#55)

chore(deps): update semantic-release-hackage to 1.1.2 yarn.lock (#55) #61

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:
generate-matrix:
name: "Generate matrix from cabal"
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
runs-on: ubuntu-latest
steps:
- name: Extract the tested GHC versions
id: set-matrix
uses: kleidukos/[email protected]
with:
cabal-file: atomic-write.cabal
ubuntu-version: latest
version: 0.1.7.0
build-and-test:
name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}
needs: generate-matrix
strategy:
matrix: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}
runs-on: ${{ matrix.os }}
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