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 959fd53 commit e560ae9Copy full SHA for e560ae9
.github/workflows/build.yml
@@ -20,13 +20,11 @@ jobs:
20
strategy:
21
matrix:
22
java:
23
- - graalvm@
24
- - zulu@1.8
25
- - zulu@1.11
+ - 11
+ - 21
26
os:
27
- - ubuntu-latest
28
- - macOS-latest
29
- - windows-latest
+ - ubuntu-22.04-arm
+ - ubuntu-22.04
30
fail-fast: false
31
steps:
32
- name: Configure git
@@ -38,9 +36,10 @@ jobs:
38
36
- name: Fetch tags
39
37
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
40
- uses: coursier/cache-action@v5
41
- - uses: olafurpg/setup-scala@v12
+ - name: Setup Scala with SBT
+ uses: coursier/setup-action@v1
42
with:
43
- java-version: ${{matrix.java}}
+ apps: sbt
44
- name: Compile, test and check binary compatibility
45
run: "sbt -batch clean +test +mimaReportBinaryIssues"
46
shell: bash
0 commit comments