From 469d7cd7b4ec7131f6a72f897fccdb457218ba53 Mon Sep 17 00:00:00 2001 From: Sergey Vinokurov Date: Sat, 14 Sep 2024 13:02:00 +0100 Subject: [PATCH] Update CI, 7.10 is not installable any more --- .github/workflows/ci.yml | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e59dcf..b63a208 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: ci +name: CI on: push: branches: @@ -13,15 +13,27 @@ jobs: build: runs-on: ${{ matrix.os }} strategy: - fail-fast: true + fail-fast: false matrix: os: [ubuntu-latest] - ghc: ['7.10', '8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0'] + ghc: + - "8.0" + - "8.2" + - "8.4" + - "8.6" + - "8.8" + - "8.10" + - "9.0" + - "9.2" + - "9.4" + - "9.6" + - "9.8" + - "9.10" include: - os: macOS-latest - ghc: '9.0' + ghc: '9.10' - os: windows-latest - ghc: '9.0' + ghc: '9.10' steps: - uses: actions/checkout@v2 - uses: haskell/actions/setup@v1