Skip to content

Commit 98ed117

Browse files
committed
README
1 parent d8f7995 commit 98ed117

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)