Allow bytestring-0.12 #70
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
ormolu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/run-ormolu@v14 | |
build: | |
runs-on: ubuntu-latest | |
needs: ormolu | |
strategy: | |
matrix: | |
cabal: ["3.10"] | |
ghc: ["9.4.7", "9.6.3", "9.8.1"] | |
env: | |
CONFIG: "--enable-tests --enable-benchmarks --flags=dev" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/setup@v2 | |
id: setup-haskell-cabal | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- run: sudo apt-get update && sudo apt-get install libtagc0-dev | |
- run: cabal update | |
- run: cabal freeze $CONFIG | |
- uses: actions/cache@v3.3.1 | |
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 format && git diff --exit-code --color=always | |
- run: cabal build $CONFIG | |
- run: cabal test $CONFIG | |
- run: cabal haddock $CONFIG | |
- run: cabal sdist |