Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
ci: Removed GHC 7.10.3 support for ubuntu-latest in CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMazarro committed Jun 1, 2023
1 parent fb8ca13 commit b69b758
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,20 @@ jobs:
os:
- macos-latest
- ubuntu-latest
ghc:
ghc-macos:
- "9.0"
- "8.10"
- "7.10.3"

ghc-ubuntu:
- "9.0"
- "8.10"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Haskell tooling
uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
ghc-version: ${{ matrix.os == 'ubuntu-latest' && matrix.ghc-ubuntu || matrix.ghc-macos }}
cabal-version: "3.6"
- name: Configure project
run: cabal configure --enable-tests
Expand Down

0 comments on commit b69b758

Please sign in to comment.