CI #73
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
# Modified from https://kodimensional.dev/github-actions | |
name: CI | |
on: | |
pull_request: | |
types: [synchronize, opened, reopened] | |
paths-ignore: | |
- "**.md" | |
- "*.sh" | |
- "CODEOWNERS" | |
- "CONTRIBUTORS" | |
- "LICENSE" | |
- "TODO" | |
- "extra/**" | |
push: | |
branches: | |
- 'master' | |
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: | |
matrix: | |
os: [ubuntu-latest] | |
ghc: | |
- "8.8.4" | |
- "8.10.7" | |
- "9.0.2" | |
- "9.2" | |
- "9.4" | |
- "9.6" | |
- "9.8" | |
include: | |
- { os: macOS-latest, ghc: "9.8" } | |
- { os: windows-latest, ghc: "9.8" } | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up GHC ${{ matrix.ghc }} | |
uses: haskell-actions/setup@v2 | |
id: setup | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
- name: Configure | |
run: | | |
cabal configure --enable-tests --enable-benchmarks --enable-documentation | |
cabal build --dry-run | |
- name: Restore cached dependencies | |
uses: actions/cache/restore@v3 | |
id: cache | |
env: | |
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }} | |
with: | |
path: ${{ steps.setup.outputs.cabal-store }} | |
key: ${{ env.key }}-plan-${{ hashFiles('**/plan.json') }} | |
restore-keys: ${{ env.key }}- | |
- name: Install dependencies | |
run: cabal build all --only-dependencies | |
- name: Save cached dependencies | |
uses: actions/cache/save@v3 | |
if: ${{ steps.cache.outputs.cache-primary-key != steps.cache.outputs.cache-matched-key }} | |
with: | |
path: ${{ steps.setup.outputs.cabal-store }} | |
key: ${{ steps.cache.outputs.cache-primary-key }} | |
- name: Build | |
run: cabal build all | |
- name: Test | |
# Some tests fail with \r\n line endings. | |
if: matrix.os != 'windows-latest' | |
run: cabal test all | |
- name: Documentation | |
if: matrix.ghc >= '9.4' | |
run: cabal haddock | |
stack: | |
name: stack / ghc ${{ matrix.ghc }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
# GHC version must match https://www.stackage.org/nightly | |
- stack: "latest" | |
ghc: "9.6" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: haskell-actions/setup@v2 | |
name: Setup Haskell Stack | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
stack-version: ${{ matrix.stack }} | |
- name: Configure | |
run: | | |
stack config set system-ghc true --global | |
stack config set resolver nightly | |
- uses: actions/cache@v3 | |
name: Cache | |
with: | |
path: | | |
~/.stack | |
key: ${{ runner.os }}-${{ steps.setup.outputs.ghc-version }}-stack | |
- name: Install dependencies | |
run: | | |
stack build --test --bench --no-run-tests --no-run-benchmarks --only-dependencies | |
- name: Build | |
run: | | |
stack build --test --bench --no-run-tests --no-run-benchmarks | |
- name: Test | |
run: | | |
stack test |