We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8f7995 commit 98ed117Copy full SHA for 98ed117
README.md
@@ -0,0 +1,24 @@
1
+# setup-clojure-lsp
2
+
3
+This action sets up [clojure-lsp](https://github.com/clojure-lsp/clojure-lsp) environment for using in GitHub Actions.
4
+So you can use a clojure interpreter in your CI environment.
5
6
+# Usage
7
8
+```yaml
9
+name: Simple example of using the clojure-lsp action
10
11
+on: [push]
12
13
+jobs:
14
+ simple:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Setup clojure-lsp
18
+ uses: turtlequeue/setup-clojure-lsp@v1.3.0
19
+ with:
20
+ clojure-lsp-version: 0.3.2
21
22
+ - name: Check clojure-lsp version
23
+ run: clojure-lsp --version
24
+```
0 commit comments