Skip to content

Commit 72623a3

Browse files
Tests workflow: fix YAML
1 parent 6258fe6 commit 72623a3

1 file changed

Lines changed: 19 additions & 18 deletions

File tree

.github/workflows/test.yml

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

Comments
 (0)