From 93685c6373c48d75f39eddb4b92236e480993854 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Fri, 6 Jan 2023 03:10:20 +0100 Subject: [PATCH] CI: use cabal_update (underscore) in matrix --- .github/workflows/workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index e91578e2..bdfe25d3 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -41,7 +41,7 @@ jobs: os: [ubuntu-latest, macOS-latest, windows-latest] ghc: ["latest", "8.4.4"] cabal: ["latest", "3.2.0.0"] - cabal-update: [false] + cabal_update: ["false"] # The following tests do not set 'cabal-update', which defaults to 'true' then. include: - os: ubuntu-latest @@ -75,7 +75,7 @@ jobs: with: ghc-version: ${{ matrix.ghc }} cabal-version: ${{ matrix.cabal }} - cabal-update: ${{ matrix.cabal-update }} + cabal-update: ${{ matrix.cabal_update }} - name: Test runghc run: | @@ -91,7 +91,7 @@ jobs: run: cabal run - name: Build and run test with Hackage dependency - if: ${{ matrix.cabal-update != false }} + if: ${{ matrix.cabal_update != 'false' }} working-directory: setup/__tests__/project-with-hackage-dependency run: cabal build && cabal run