diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-04-29 10:05:54 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-04-29 10:05:54 -0400 |
commit | 00d2914e627b6b461c89b27c7a2de32382691b06 (patch) | |
tree | 21b70ec97f4c9ecd2f802a77a72e70de9405bc24 /.github/workflows | |
parent | 7a10420bd523dfe1eebdb337492917f7bd4cb433 (diff) | |
parent | 57dff69ee281a0b2b63475b3127822383fd51265 (diff) |
Merge remote-tracking branch 'origin/ghc-head' into ghc-9.4
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2aa9f3c..dafcdc74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - cabal: ["3.4.0.0"] + cabal: ["3.6"] ghc: - "head" @@ -41,12 +41,11 @@ jobs: cabal freeze - uses: actions/cache@v2 - name: Cache ~/.cabal/store and .ghcup + name: Cache ~/.cabal/store with: path: | ${{ steps.setup-haskell-cabal.outputs.cabal-store }} - .ghcup - key: ${{ runner.os }} + key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} - name: Build run: | |