Skip to content

Commit

Permalink
Unify workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspervdj committed Jan 15, 2025
1 parent 9478fb9 commit c8abb88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 38 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/cabal.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
ghc: ["9.6.2"]
ghc: ["9.4", "9.6", "9.8"]

steps:
- uses: actions/checkout@v4
Expand All @@ -29,11 +29,11 @@ jobs:
- run: make build
- run: make test

- if: startsWith(github.ref, 'refs/tags')
- if: startsWith(github.ref, 'refs/tags') && matrix.ghc == '9.6'
run: make artifact

- uses: actions/upload-artifact@v4
if: startsWith(github.ref, 'refs/tags')
if: startsWith(github.ref, 'refs/tags') && matrix.ghc == '9.6'
with:
path: artifacts/*
name: artifacts-${{ runner.os }}
Expand Down

0 comments on commit c8abb88

Please sign in to comment.