-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
38ac549
commit ba00eed
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,11 +23,15 @@ jobs: | |
distribution: 'adopt' | ||
java-version: '17' | ||
|
||
- name: Install Leiningen | ||
run: | | ||
curl https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein > ~/bin/lein | ||
chmod +x ~/bin/lein | ||
sudo ln -s ~/bin/lein /usr/local/bin/lein | ||
- name: Install clojure tools | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
# Install just one or all simultaneously | ||
# The value must indicate a particular version of the tool, or use 'latest' | ||
# to always provision the latest version | ||
cli: 1.10.1.693 # Clojure CLI based on tools.deps | ||
lein: 2.9.1 # Leiningen | ||
cljfmt: 0.10.2 # cljfmt | ||
|
||
- name: Cache Leiningen dependencies | ||
uses: actions/cache@v2 | ||
|