From 461d820e0729d0f67e55594aba179178abd165d0 Mon Sep 17 00:00:00 2001 From: Maximilian Algehed Date: Wed, 10 Jul 2024 12:57:30 +0200 Subject: [PATCH] wip --- .github/workflows/haskell-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index 9eb37537..adbb46d7 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -32,8 +32,7 @@ jobs: - uses: haskell-actions/setup@v2 with: ghc-version: ${{matrix.ghc-version}} - - name: restore cache - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v4 with: key: ${{ matrix.os }}-${{ matrix.ghc-version }}-${{ github.sha }} path: ~/.cabal/store @@ -41,8 +40,7 @@ jobs: - run: cabal build all - run: cabal test all - run: cabal haddock all - - name: save cache - uses: actions/cache/save@v4 + - uses: actions/cache/save@v4 with: key: ${{ matrix.os }}-${{ matrix.ghc-version }}-${{ github.sha }} path: ~/.cabal/store