Relax upper bounds on megaparsec and bytestring #33
Workflow file for this run
This file contains hidden or 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: | |
| fourmolu: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: fourmolu/fourmolu-action@v5 | |
| build: | |
| runs-on: ubuntu-latest | |
| needs: fourmolu | |
| strategy: | |
| matrix: | |
| cabal: ["latest"] | |
| ghc: ["8.10.7", "9.0.2", "9.2.8", "9.4.8", "9.6.6"] | |
| env: | |
| CONFIG: "--enable-tests --enable-benchmarks --flags=use-doc-tests" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: haskell/actions/setup@v2 | |
| id: setup-haskell-cabal | |
| with: | |
| ghc-version: ${{ matrix.ghc }} | |
| cabal-version: ${{ matrix.cabal }} | |
| - run: cabal update | |
| - run: cabal freeze $CONFIG | |
| - uses: actions/cache@v3.0.7 | |
| 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 build $CONFIG | |
| - run: cabal test $CONFIG | |
| - run: cabal haddock $CONFIG | |
| - run: cabal sdist |