Skip to content

Build with all the supported ghc's #42

Build with all the supported ghc's

Build with all the supported ghc's #42

Workflow file for this run

name: cabal
on:
push:
pull_request:
jobs:
build:
name: ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
matrix:
cabal: ["3.10.3.0"]
ghc:
- "9.2.8"
- "9.4.7"
- "9.6.3"
include:

Check failure on line 18 in .github/workflows/cabal.yml

View workflow run for this annotation

GitHub Actions / cabal

Invalid workflow file

The workflow is not valid. .github/workflows/cabal.yml (Line: 18, Col: 7): Unexpected value 'include'
- repo: "hackage"
- ghc: "9.8.1"
repo: "github"
- ghc: "9.8.1"
repo: "hackage"
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Setup z3
uses: pavpanchekha/setup-z3@1.2.2
with:
version: "4.8.7"
- name: Setup GHC and cabal-install
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Configure the build
run: |
if [ ${{ matrix.repo }} == "github" ]
then
cp cabal.project.github cabal.project
fi
cabal configure --enable-tests --enable-benchmarks --disable-documentation
# generate dist-newstyle/cache/plan.json
cabal build all --dry-run
- name: Cache ~/.cabal/packages, ~/.cabal/store and dist-newstyle
uses: actions/cache@v3
with:
path: |
~/.cabal/packages
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}-cabal-${{ hashFiles('**/*.cabal', './dist-newstyle/cache/plan.json') }}
- name: Update package list
run: cabal update
- name: Build
run: cabal build all