Bump haskell-actions/run-ormolu from 14 to 15 (#26) #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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
ormolu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/run-ormolu@v15 | |
ci: | |
name: Run tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ghc: | |
- 8.10.7 | |
- 9.0.2 | |
- 9.2.7 | |
- 9.4.8 | |
- 9.6.3 | |
- 9.8.1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haskell/actions/setup@v2 | |
id: setup-haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
- name: Setup cabal-docspec | |
run: | | |
CABAL_DIR=~/.cabal/bin | |
echo "$CABAL_DIR" >> $GITHUB_PATH | |
DOCSPEC="$CABAL_DIR/cabal-docspec" | |
mkdir -p "$CABAL_DIR" | |
curl -sL https://github.com/phadej/cabal-extras/releases/download/cabal-docspec-$CABAL_DOCSPEC_VERSION/cabal-docspec-$CABAL_DOCSPEC_VERSION-x86_64-linux.xz | xz -d > "$DOCSPEC" | |
chmod +x "$DOCSPEC" | |
"$DOCSPEC" --version | |
env: | |
CABAL_DOCSPEC_VERSION: "0.0.0.20230517" | |
- name: Configure | |
run: cabal configure --enable-tests | |
- name: Freeze build | |
run: cabal freeze | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.setup-haskell.outputs.cabal-store }} | |
key: cabal-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} | |
restore-keys: | | |
cabal-${{ matrix.ghc }} | |
- name: Build dependencies | |
run: cabal build --only-dependencies | |
- name: Build | |
run: cabal build | |
- name: Run tests | |
run: cabal test --test-show-details=direct | |
- name: Run docspec | |
run: ./docspec.sh | |
- run: cabal check |