chore: Run JDK9Test compiling to validate syntax. #2633
Workflow file for this run
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
name: Binary Compatibility | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 1.0.x | |
permissions: {} | |
jobs: | |
check-binary-compatibility: | |
name: Check / Binary Compatibility | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'apache/incubator-pekko' | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: 0 | |
- name: Setup Java 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
- name: Enable jvm-opts | |
run: cp .jvmopts-ci .jvmopts | |
- name: Compile code | |
run: sbt +compile | |
- name: Report MiMa Binary Issues | |
run: |- | |
sbt +mimaReportBinaryIssues | |
- name: Check correct MiMa filter directories | |
run: | | |
sbt checkMimaFilterDirectories |