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