Skip to content

Commit

Permalink
get-tested based CI
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwebb76 committed Dec 10, 2024
1 parent 1c9b702 commit 04dff18
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 239 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
jobs:
generate-matrix:
name: "Generate matrix from cabal"
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
runs-on: ubuntu-latest
steps:
- name: Extract the tested GHC versions
id: set-matrix
uses: kleidukos/[email protected]
with:
cabal-file: aws-arn.cabal
ubuntu-version: "latest"
macos-version: "latest"
version: 0.1.7.1
tests:
name: ${{ matrix.ghc }} on ${{ matrix.os }}
needs: generate-matrix
runs-on: ${{ matrix.os }}
strategy:
matrix: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}
239 changes: 0 additions & 239 deletions .github/workflows/haskell-ci.yml

This file was deleted.

0 comments on commit 04dff18

Please sign in to comment.