.cabal: move doc files to extra-doc-files #85
Workflow file for this run
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 tests | |
on: [push, pull_request] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
versions: | |
- ghc: '8.8' | |
cabal: '3.0' | |
- ghc: '8.10' | |
cabal: '3.0' | |
- ghc: '9.0' | |
cabal: '3.4' | |
- ghc: '9.2' | |
cabal: '3.8' | |
- ghc: '9.4' | |
cabal: '3.10' | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install cabal/ghc | |
run: | | |
ghcup install ghc --set ${{ matrix.versions.ghc }} | |
ghcup install cabal --set ${{ matrix.versions.cabal }} | |
- name: Cache cabal global package db | |
id: cabal-global | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cabal | |
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-global-${{ secrets.CACHE_VERSION }} | |
- name: Cache cabal work | |
id: cabal-local | |
uses: actions/cache@v3 | |
with: | |
path: | | |
dist-newstyle | |
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-local-${{ secrets.CACHE_VERSION }} | |
- name: Install dependencies | |
run: | | |
cabal v2-update | |
cabal v2-build --dependencies-only --enable-tests --disable-optimization -fexecutable all | |
- name: Build and test | |
run: | | |
cabal v2-build --enable-tests --disable-optimization -fexecutable all | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install stack | |
shell: cmd | |
run: | | |
choco install haskell-stack | |
- name: Install dependencies | |
run: | | |
stack update | |
stack test --dependencies-only --fast | |
- name: Build and test | |
shell: cmd | |
run: | | |
chcp 65001 | |
stack install --test --fast |