@@ -17,14 +17,14 @@ jobs:
1717 java-version : [11, 17, 21]
1818
1919 steps :
20- - name : Checkout code
21- uses : actions/checkout@v5
20+ - name : Checkout code
21+ uses : actions/checkout@v5
2222
23- - name : Set up JDK ${{ matrix.java-version }}
24- uses : actions/setup-java@v4
25- with :
26- java-version : ${{ matrix.java-version }}
27- distribution : ' temurin'
23+ - name : Set up JDK ${{ matrix.java-version }}
24+ uses : actions/setup-java@v4
25+ with :
26+ java-version : ${{ matrix.java-version }}
27+ distribution : ' temurin'
2828
2929 - name : Install clojure tools
3030 uses : DeLaGuardo/setup-clojure@13.4
@@ -43,14 +43,15 @@ jobs:
4343 # key: cljdeps-${{ hashFiles('build.boot') }}
4444 restore-keys : cljdeps-
4545
46- - name : Install Leiningen
47- run : |
48- curl -O https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
49- chmod +x lein
50- sudo mv lein /usr/local/bin/
51- lein version # This will download Leiningen if not cached
52-
53- - name : Install dependencies
54- run : lein deps
55- - name : Run tests
56- run : lein all test
46+ - name : Install Leiningen
47+ run : |
48+ curl -O https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
49+ chmod +x lein
50+ sudo mv lein /usr/local/bin/
51+ lein version # This will download Leiningen if not cached
52+
53+ - name : Install dependencies
54+ run : lein deps
55+
56+ - name : Run tests
57+ run : lein all test
0 commit comments