diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-04-25 16:24:31 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-04-25 16:24:31 -0400 |
commit | 70b83bc5fa944f17f1423c4c94a38b82bdfe1ccd (patch) | |
tree | b0c43a5ac7cf53b4832d1f34ebfa57042a422398 /.github | |
parent | 24208496649a02d5f87373052c430ea4a97842c5 (diff) | |
parent | 0c19a8847844a4a45b9fe7c115effcec461cfe5c (diff) |
Merge remote-tracking branch 'upstream/ghc-9.2' into ghc-head
Diffstat (limited to '.github')
-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: | |