From 3c9fcd0db48a1aa976598f4d48710dee65a7fe99 Mon Sep 17 00:00:00 2001 From: dopamane Date: Mon, 15 Jan 2024 03:03:12 -0800 Subject: [PATCH] Update ci --- .github/workflows/haskell.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 55b6ea3..bae8979 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -14,21 +14,17 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - ghc: ['9.2'] - cabal: ['3.6'] + ghc: ['9.2', '9.6'] os: [ubuntu-20.04, windows-2022] - name: ${{ matrix.os }} GHC ${{ matrix.ghc }} Cabal ${{ matrix.cabal }} + name: ${{ matrix.os }} GHC ${{ matrix.ghc }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Haskell - uses: haskell/actions/setup@v2 + uses: haskell-actions/setup@v2 with: ghc-version: ${{ matrix.ghc }} - cabal-version: ${{ matrix.cabal }} - name: Build - run: | - cabal update - cabal build + run: cabal build