Skip to content

Commit b67d42e

Browse files
ci uses ubuntu-24.04 (#866)
* ci uses ubuntu-24.04 * Setup SBT * unspecified sbt runner script version
1 parent bbce1ca commit b67d42e

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,21 @@ on:
88

99
jobs:
1010
ci:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212

1313
steps:
1414
- name: Checkout repository
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1616

17+
- name: Setup JDK
18+
uses: actions/setup-java@v4
19+
with:
20+
distribution: temurin
21+
java-version: 17
22+
cache: sbt
23+
24+
- name: Setup SBT
25+
uses: sbt/setup-sbt@v1
26+
1727
- name: Run tests for all exercises
1828
run: bin/test

0 commit comments

Comments
 (0)