This repository has been archived by the owner on Aug 3, 2024. It is now read-only.
Fix pretty-printing of Solo and MkSolo #585
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 | |
# Trigger the workflow on push or pull request, but only for the master branch | |
on: | |
pull_request: | |
push: | |
branches: ["ghc-head"] | |
jobs: | |
cabal: | |
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
cabal: ["3.6"] | |
ghc: | |
- "head" | |
steps: | |
- uses: actions/checkout@v2 | |
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/ghc-head' | |
- name: Install gmp and tinfo | |
run: | | |
sudo -- sh -c "apt-get update" | |
sudo -- sh -c "apt-get -y install libgmp-dev libtinfo-dev" | |
- uses: haskell/actions/setup@main | |
id: setup-haskell-cabal | |
name: Setup Haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- name: Prepare environment | |
run: echo "$HOME/.ghcup/bin" >> $GITHUB_PATH | |
- name: Freeze | |
run: | | |
cabal freeze | |
- uses: actions/cache@v2 | |
name: Cache ~/.cabal/store | |
with: | |
path: | | |
${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} | |
- name: Build | |
run: | | |
cabal configure --enable-tests --enable-benchmarks --test-show-details=direct | |
cabal build all | |
- name: Test | |
run: cabal test --test-show-details=direct --test-options="--haddock-stdout=/dev/stdout" all |