Merge pull request #94 from eclipse-biscuit/biscuit-3-3 #352
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 | |
| # Trigger the workflow on push or pull request, but only for the main branch | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| cabal: | |
| name: ${{ matrix.os }} / ghc ${{ matrix.ghc }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| cabal: ["3.12.1.0"] | |
| ghc: ["9.6.7", "9.8.4", "9.10.2", "9.12.2"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/main' | |
| - uses: haskell-actions/setup@v2 | |
| id: setup-haskell-cabal | |
| name: Setup Haskell | |
| with: | |
| ghc-version: ${{ matrix.ghc }} | |
| cabal-version: ${{ matrix.cabal }} | |
| - name: Prepare environment | |
| run: .github/workflows/setup_ci_env.sh | |
| - name: Freeze | |
| run: | | |
| cabal freeze | |
| - uses: actions/cache@v3 | |
| name: Cache ~/.cabal/store and .ghcup | |
| with: | |
| path: | | |
| ${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
| .ghcup | |
| key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} | |
| - name: Build | |
| run: | | |
| cp .cabal.project.local cabal.project.local | |
| cabal configure --enable-tests --test-show-details=direct --disable-optimization | |
| cabal build all | |
| - name: Test | |
| run: | | |
| cabal test all |