setup-clojure/README.md

28 lines
707 B
Markdown
Raw Normal View History

# setup-clojure
This action sets up clojure tools environment for using in GitHub Actions.
* clojure cli
2019-10-08 12:46:58 +02:00
* leiningen
* boot-clj
# Usage
```yaml
steps:
- uses: actions/checkout@latest
2019-10-20 16:52:39 +02:00
- uses: actions/setup-java@v1
with:
java-version: '9.0.4' // The JDK version to make available on the path. Required to run any clojure command line tools.
- uses: DeLaGuardo/setup-clojure@2.0
with:
tools-deps: '1.10.1.469'
- run: clojure -Sdescribe
```
2019-10-08 12:46:58 +02:00
For more usecases please check [Smoke Test Workflow file](https://github.com/DeLaGuardo/setup-clojure/blob/master/.github/workflows/smoke-tests.yml)
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)