-
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump Java 8 to 11 to avoid a jar reading bug * Bump Java 14 to 18 to test on the latest Java * Disable fail-fast, doesn't match my workflow on this project
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,12 @@ jobs: | |
ci: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- java: 14 | ||
- java: 18.0.1 | ||
scala: 2 | ||
- java: 8 | ||
- java: 11.0.15 | ||
scala: 3 | ||
name: Scala v${{ matrix.scala }} / Java v${{ matrix.java }} | ||
steps: | ||
|
@@ -32,7 +33,7 @@ jobs: | |
- name: Setup Scala | ||
uses: japgolly/[email protected] | ||
with: | ||
java-version: adopt@1.${{ matrix.java }} | ||
java-version: adoptium@1.${{ matrix.java }} | ||
|
||
- name: Build and test | ||
shell: bash | ||
|