We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbce1ca commit b67d42eCopy full SHA for b67d42e
.github/workflows/test.yml
@@ -8,11 +8,21 @@ on:
8
9
jobs:
10
ci:
11
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
12
13
steps:
14
- name: Checkout repository
15
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
16
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
27
- name: Run tests for all exercises
28
run: bin/test
0 commit comments