File tree 2 files changed +13
-12
lines changed
actions/install-leiningen
2 files changed +13
-12
lines changed Original file line number Diff line number Diff line change
1
+ name : " install Leiningen"
2
+ runs :
3
+ using : composite
4
+ steps :
5
+ - name : add pwd to PATH
6
+ shell : bash
7
+ run : echo "$(pwd)" >> "$GITHUB_PATH"
8
+ - name : install Leiningen
9
+ run : |
10
+ curl -LSs https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein -o lein
11
+ chmod +x lein
Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
steps :
8
8
- uses : actions/checkout@v4
9
- - name : add pwd to PATH
10
- run : echo "$(pwd)" >> "$GITHUB_PATH"
11
- - name : install Leiningen
12
- run : |
13
- curl -LSs https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein -o lein
14
- chmod +x lein
9
+ - uses : ./.github/actions/install-leiningen
15
10
- name : install Clojure dependencies
16
11
run : lein deps
17
12
- name : run Clojure tests
22
17
runs-on : ubuntu-latest
23
18
steps :
24
19
- uses : actions/checkout@v4
25
- - name : add pwd to PATH
26
- run : echo "$(pwd)" >> "$GITHUB_PATH"
27
- - name : install Leiningen
28
- run : |
29
- curl -LSs https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein -o lein
30
- chmod +x lein
20
+ - uses : ./.github/actions/install-leiningen
31
21
- run : lein codox
32
22
33
23
notify-test-failures :
You can’t perform that action at this time.
0 commit comments