Skip to content

Commit

Permalink
ci: add cache step for clojure dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Seryiza committed Nov 10, 2024
1 parent 6b697bf commit 872f977
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,16 @@ jobs:
cli: 1.11.3.1463
zprint: 1.2.3

- name: Cache clojure dependencies
uses: actions/cache@v3
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
# List all files containing dependencies:
key: cljdeps-${{ hashFiles('deps.edn') }}
restore-keys: cljdeps-

- name: Execute tests
run: clojure -X:test

0 comments on commit 872f977

Please sign in to comment.