From c8cea16f4f053745888ebba80befd28ffeb06ebb Mon Sep 17 00:00:00 2001 From: Christian Meter Date: Sun, 20 Oct 2019 16:58:45 +0200 Subject: [PATCH] Update spelling and formattings in README --- README.md | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 9747715..28f2720 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,28 @@ # setup-clojure -This action sets up clojure tools environment for using in GitHub Actions. +This action sets up Clojure tools environment for using in GitHub Actions. -* clojure cli -* leiningen +* Clojure CLI +* Leiningen * boot-clj # Usage +Here is a snippet for your workflow file: + ```yaml steps: -- uses: actions/checkout@latest -- 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 + - uses: actions/checkout@latest + - 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 ``` -For more usecases please check [Smoke Test Workflow file](https://github.com/DeLaGuardo/setup-clojure/blob/master/.github/workflows/smoke-tests.yml) +For more application cases please check [Smoke Test Workflow file](https://github.com/DeLaGuardo/setup-clojure/blob/master/.github/workflows/smoke-tests.yml) # License