Skip to content

Commit

Permalink
feature: Support JDK21 (#3189)
Browse files Browse the repository at this point in the history
  • Loading branch information
xerial authored Sep 5, 2023
1 parent f3d2e68 commit a8e848b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,22 +96,22 @@ jobs:
annotate_only: true
detailed_summary: true
test_2_13_latest_jdk:
name: Scala 2.13 + JDK20
name: Scala 2.13 + JDK21
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '20'
- name: Scala 2.13 + JDK20 test
distribution: 'zulu'
java-version: '21-ea'
- name: Scala 2.13 + JDK21 test
run: ./sbt ++2.13 projectJVM/test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala 2.13 + JDK20
check_name: Test Report Scala 2.13 + JDK21
annotate_only: true
detailed_summary: true
test_3:
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pull_request_rules:
- check-success=Code format
- check-success=Scala 2.12
- check-success=Scala 2.13 + JDK11
- check-success=Scala 2.13 + JDK20
- check-success=Scala 2.13 + JDK21
- check-success=Scala 3.x (Dotty)
- check-success=Scala.js / Scala 2.12
- check-success=Scala.js / Scala 2.13
Expand Down

0 comments on commit a8e848b

Please sign in to comment.