Upgrade to tasty-mima v1.1.0. #51
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: Scala CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [ '8', '11', '17' ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java }} | |
cache: 'sbt' | |
- name: Run tests | |
run: sbt sbt-tasty-mima/scripted | |
- name: Run scalafmt check | |
run: sbt scalafmtCheck | |
- name: Run version policy check | |
run: sbt versionPolicyCheck | |
- name: Run tastyMiMaReportIssues | |
run: sbt tastyMiMaReportIssues |