Skip to content

Commit c3dfc29

Browse files
committed
Fix test.yml Github action
1 parent 9a14bad commit c3dfc29

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ permissions:
1111

1212
jobs:
1313
test:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-20.04
1515

1616
steps:
17-
- uses: actions/checkout@v3
18-
- name: Set up JDK 11
19-
- uses: coursier/setup-action@v1
20-
with:
21-
jvm: temurin:11
22-
apps: sbt
23-
- name: Run tests
24-
run: sbt +test
17+
- uses: actions/checkout@v3.0.2
18+
with:
19+
fetch-depth: 0
20+
- uses: coursier/setup-action@v1
21+
with:
22+
jvm: temurin:11
23+
apps: sbt
24+
- name: Run tests
25+
run: sbt +test

0 commit comments

Comments
 (0)