Bumped ansi-wl-pprint to 1.0.2 and everything seems to build fine. #36
Workflow file for this run
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 | |
# Copied from https://github.com/kowainik/.github/blob/main/workflow-templates/ci.yml | |
# and the blog post https://kodimensional.dev/github-actions by @chshersh | |
# Trigger the workflow on push or pull request, but only for the main branch | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [synchronize, opened, reopened] | |
push: | |
branches: [main] | |
# schedule: | |
# # additionally run once per week (At 00:00 on Sunday) to maintain cache | |
# - cron: '0 0 * * 0' | |
jobs: | |
cabal: | |
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# os: [ubuntu-latest, macOS-latest, windows-latest] | |
os: [ ubuntu-latest ] | |
cabal: [latest] | |
ghc: | |
- "8.0" | |
- "8.2" | |
- "8.4" | |
- "8.6" | |
- "8.8" | |
- "8.10" | |
- "9.0" | |
- "9.2" | |
- "9.4" | |
# exclude: | |
# - os: macOS-latest | |
# ghc: 8.8 | |
# - os: macOS-latest | |
# ghc: 8.6 | |
# - os: windows-latest | |
# ghc: 8.8 | |
# - os: windows-latest | |
# ghc: 8.6 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: haskell/actions/setup@v2 | |
id: setup-haskell-cabal | |
name: Setup Haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- name: Configure | |
run: | | |
cabal configure --enable-tests --enable-benchmarks --enable-documentation --test-show-details=direct --write-ghc-environment-files=always | |
- name: Freeze | |
run: | | |
cabal freeze | |
- uses: actions/cache@v3 | |
name: Cache ~/.cabal/store | |
with: | |
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} | |
- name: Install dependencies | |
run: | | |
cabal build all --only-dependencies | |
- name: Build | |
run: | | |
cabal build all | |
- name: Test | |
run: | | |
cabal test all | |
- name: Documentation | |
run: | | |
cabal haddock | |
# stack: | |
# name: stack / ghc ${{ matrix.ghc }} | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# stack: ["2.3.1"] | |
# ghc: ["8.8.3"] | |
# steps: | |
# - uses: actions/checkout@v2 | |
# if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master' | |
# - uses: actions/setup-haskell@v1.1 | |
# name: Setup Haskell Stack | |
# with: | |
# ghc-version: ${{ matrix.ghc }} | |
# stack-version: ${{ matrix.stack }} | |
# - uses: actions/cache@v1 | |
# name: Cache ~/.stack | |
# with: | |
# path: ~/.stack | |
# key: ${{ runner.os }}-${{ matrix.ghc }}-stack | |
# - name: Build | |
# run: | | |
# stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks | |
# - name: Test | |
# run: | | |
# stack test --system-ghc |