Skip to content

Commit 5c0b89a

Browse files
committed
test
1 parent 4b9b2f7 commit 5c0b89a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/lein_test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test OS leiningen
2+
on: [push]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@main
9+
- name: Prepare java
10+
uses: actions/setup-java@v3
11+
with:
12+
distribution: 'zulu'
13+
java-version: '8'
14+
- run: env
15+
- name: Install leiningen
16+
uses: ./
17+
with:
18+
lein: 2.10.0
19+
github-token: ${{ secrets.GITHUB_TOKEN }}
20+
- run: env
21+
- run: DEBUG=true lein -v
22+
- run: unset LEIN_JAR
23+
- run: DEBUG=true lein -v

0 commit comments

Comments
 (0)