Skip to content

Add filter to uninstall #184

Add filter to uninstall

Add filter to uninstall #184

Workflow file for this run

# The present workflow was made based on the following references:
# - https://github.com/actions/cache/blob/main/examples.md#haskell---cabal
# - https://github.com/haskell/time/blob/master/.github/workflows/ci.yml
# - https://github.com/stackbuilders/stache/blob/master/.github/workflows/ci.yaml
# - https://markkarpov.com/post/github-actions-for-haskell-ci.html
---
name: Build
on: push
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
haskell:
strategy:
fail-fast: true
matrix:
os:
- macos-13 # Intel
- macos-14 # ARM
- ubuntu-latest
devShell:
- ghc810
- ghc90
exclude:
- os: macos-14 # ARM
devShell: ghc810
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
# https://input-output-hk.github.io/haskell.nix/tutorials/getting-started.html
extra_nix_config: |
trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
substituters = https://cache.iog.io https://cache.nixos.org
# https://github.com/actions/cache/blob/main/examples.md#haskell---cabal
- uses: actions/cache@v3
with:
path: |
~/.cabal/packages
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-${{ matrix.devShell }}-${{ hashFiles('*.cabal') }}
restore-keys: ${{ runner.os }}-${{ matrix.devShell }}-
- name: Uninstall GHCup
run: ghcup nuke
if: ${{ runner.os == "Linux" }}

Check failure on line 52 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 52, Col: 13): Unexpected symbol: '"Linux"'. Located at position 14 within expression: runner.os == "Linux"
- name: Install packages / Print versions
run: |
./bin/${{ matrix.devShell }} -c ghc --version
./bin/${{ matrix.devShell }} -c cabal --version
- name: Update package index
run: ./bin/${{ matrix.devShell }} -c cabal update
- name: Enable tests
run: ./bin/${{ matrix.devShell }} -c cabal configure --enable-tests
- name: Install project dependencies
run: ./bin/${{ matrix.devShell }} -c cabal build --only-dependencies
- name: Compile project
run: ./bin/${{ matrix.devShell }} -c cabal build
- name: Run tests
run: ./bin/${{ matrix.devShell }} -c cabal test
- name: Check documentation
run: ./bin/${{ matrix.devShell }} -c ./script/haddock
docker:
if: false
uses: ./.github/workflows/reusable-docker.yml
with:
push: false