2020-09-24 10:30:59 +02:00
wip
2020-08-20 11:39:44 +02:00
2020-09-24 10:30:59 +02:00
2020-09-24 10:30:59 +02:00
2020-09-24 10:30:59 +02:00
wip
2020-08-20 11:39:44 +02:00
wip
2020-08-20 11:39:44 +02:00
wip
2020-08-20 11:41:28 +02:00
wip
2020-08-20 11:39:44 +02:00
wip
2020-08-20 11:39:44 +02:00
2020-09-24 10:30:59 +02:00
wip
2020-08-20 12:57:19 +02:00
2019-10-04 11:41:15 +02:00
wip
2020-08-20 11:43:44 +02:00
wip
2020-08-20 11:43:44 +02:00
wip
2020-08-20 11:39:44 +02:00

setup-clojure

This action sets up Clojure tools environment for using in GitHub Actions.

  • Clojure CLI
  • Leiningen
  • boot-clj

All three major tools available for MacOS and ubuntu based runners, Leiningen also available on Windows

Usage

Here is a snippet for your workflow file:

steps:
- uses: actions/checkout@latest
// The JDK version to make available on the path. Required to run any clojure command line tools.
// You can use any package that providing any JDK here, eg. `actions/setup-java@v1`
// or you can use mine package to provision graalvm on hosted environment.
- uses: DeLaGuardo/setup-graalvm@2.0
  with:
    graalvm-version: '19.3.1.java11'
- uses: DeLaGuardo/setup-clojure@master
  with:
    tools-deps: '1.10.1.469'
- run: clojure -Sdescribe

For more application cases please check Smoke Test Workflow file

License

The scripts and documentation in this project are released under the MIT License

Description
GitHub Action to provision clojure's most popular build tools for Linux, Mac OS X and Windows.
Readme MIT
Languages
TypeScript 99.3%
JavaScript 0.7%