Skip to content
list

GitHub Action

Test supported GHC versions

v0.1.7.0 Latest version

Test supported GHC versions

list

Test supported GHC versions

Generate a test matrix from your cabal file's `tested-with` stanza

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Test supported GHC versions

uses: Kleidukos/[email protected]

Learn more about this action in Kleidukos/get-tested

Choose a version

get-tested

A CLI tool that retrieves the tested-with stanza of a cabal file and formats it in such a way that GitHub Actions can use it.

Usage

The inputs of the action (under the with: stanza) are the following:

  • cabal-file: The path to your cabal file, e.g. somefolder/myproject.cabal. required;
  • version: Version of the tool. required;
  • windows: Enable Windows runner. not required, defaults to false;
  • macos: Enable macOS runner. not required, defaults to false;
  • ubuntu: Enable Ubuntu runner. not required, defaults to false.

One of the three OS inputs is required however. See below for an example:

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: get-tested.cabal
          ubuntu: true
          version: 0.1.6.0
  tests:
    name: ${{ matrix.ghc }} on ${{ matrix.os }}
    needs: generate-matrix
    runs-on: ${{ matrix.os }}
    strategy:
      matrix: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}