Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
albertodvp committed Dec 19, 2023
1 parent a4fdbf2 commit e6f444b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,17 +100,17 @@ jobs:
echo "package cardano-crypto-praos" >> cabal.project.local
echo " flags: -external-libsodium-vrf" >> cabal.project.local
- name: Restore cached dependencies (todo name)
- name: Cached Dependencies
uses: actions/cache@v2
id: cabalcache
id: cabal-cache
with:
path: |
cabal.project.local
${{ steps.setup.outputs.cabal-store }}
key: ${{ hashFiles('**/*.cabal', '**/cabal.project') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
if: steps.cabal-cache.outputs.cache-hit != 'true'
run: cabal build all --only-dependencies

test:
Expand All @@ -123,9 +123,9 @@ jobs:
with:
ghc-version: '8.10'
cabal-version: '3.6.0.0'
- name: cached dependencies
- name: Cached Dependencies
uses: actions/cache@v2
id: cache
id: cabal-cache
with:
path: |
cabal.project.local
Expand Down

0 comments on commit e6f444b

Please sign in to comment.