setup-clojure/README.md

110 lines
3.4 KiB
Markdown
Raw Permalink Normal View History

# setup-clojure
This action sets up Clojure tools environment for using in GitHub Actions.
2022-07-18 12:00:22 +02:00
* [Clojure CLI](https://clojure.org/guides/deps_and_cli)
* [leiningen](https://leiningen.org/)
* [boot-clj](https://boot-clj.github.io/)
* [babashka](https://babashka.org/)
* [clj-kondo](https://github.com/clj-kondo/clj-kondo)
2023-05-25 21:01:29 +01:00
* [cljfmt](https://github.com/weavejester/cljfmt)
2022-07-18 12:00:22 +02:00
* [cljstyle](https://github.com/greglook/cljstyle)
* [deps.clj](https://github.com/borkdude/deps.clj)
* [zprint](https://github.com/kkinnear/zprint)
2022-07-20 15:19:23 +02:00
All three major tools (Clojure CLI, leiningen and boot-clj) available for MacOS, Ubuntu and Windows based runners. Please look at [Smoke Test Workflow file](https://github.com/DeLaGuardo/setup-clojure/blob/main/.github/workflows/smoke-tests.yml) for compatibility matrix.
2020-09-21 10:32:50 +02:00
# Usage
Here is a snippet for your workflow file:
```yaml
2021-03-24 17:57:52 +01:00
name: Example workflow
on: [push]
jobs:
clojure:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
2021-03-24 17:57:52 +01:00
2022-07-18 12:00:22 +02:00
# It is important to install java before installing clojure tools which needs java
# exclusions: babashka, clj-kondo and cljstyle
2021-03-24 17:57:52 +01:00
- name: Prepare java
uses: actions/setup-java@v3
2021-03-24 17:57:52 +01:00
with:
2021-08-06 10:37:54 +02:00
distribution: 'zulu'
java-version: '8'
2021-03-24 17:57:52 +01:00
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@13.0
2021-03-24 17:57:52 +01:00
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
2022-07-18 12:00:22 +02:00
cli: 1.10.1.693 # Clojure CLI based on tools.deps
lein: 2.9.1 # Leiningen
boot: 2.8.3 # Boot.clj
bb: 0.7.8 # Babashka
clj-kondo: 2022.05.31 # Clj-kondo
2023-05-25 21:01:29 +01:00
cljfmt: 0.10.2 # cljfmt
cljstyle: 0.16.626 # cljstyle
2022-07-18 12:00:22 +02:00
zprint: 1.2.3 # zprint
# Optional step:
- 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') }}
# key: cljdeps-${{ hashFiles('deps.edn', 'bb.edn') }}
# key: cljdeps-${{ hashFiles('project.clj') }}
# key: cljdeps-${{ hashFiles('build.boot') }}
restore-keys: cljdeps-
2021-03-24 17:57:52 +01:00
- name: Execute clojure code
2021-03-24 17:57:52 +01:00
run: clojure -e "(+ 1 1)"
- name: Get leiningen version
run: lein -v
- name: Get boot version
run: boot -V
2022-06-16 16:57:17 +05:00
- name: Get babashka version
run: bb --version
- name: Get clj-kondo version
run: clj-kondo --version
2023-05-25 21:01:29 +01:00
- name: Get cljfmt version
run: cljfmt --version
2022-06-16 16:57:17 +05:00
- name: Get cljstyle version
# cljstyle is not yet available for windows and mac os
if: ${{ matrix.os == 'ubuntu-latest' }}
2022-06-16 16:57:17 +05:00
run: cljstyle version
2022-06-27 19:23:56 +03:00
- name: Get zprint version
run: zprint --version
```
2022-07-20 15:19:23 +02:00
For more application cases please check [Smoke Test Workflow file](https://github.com/DeLaGuardo/setup-clojure/blob/main/.github/workflows/smoke-tests.yml)
2019-10-08 12:46:58 +02:00
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)