Skip to content

Commit

Permalink
bad cache?
Browse files Browse the repository at this point in the history
  • Loading branch information
cartesian-theatrics committed Apr 4, 2024
1 parent c84fe54 commit 2e34466
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ jobs:
cmd-exe-workaround: 'latest'
zprint: 1.2.3

- name: Cache Clojure Dependencies
uses: actions/cache@v2
- name: Cache clojure dependencies
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/deps.edn') }}
restore-keys: |
${{ runner.os }}-m2
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('deps.edn') }}
restore-keys: cljdeps-

- name: Run tests
run: clojure -M:dev:test

0 comments on commit 2e34466

Please sign in to comment.