Skip to content

WiP Making it parallel. #126

WiP Making it parallel.

WiP Making it parallel. #126

Workflow file for this run

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 the git tags for sbt-dynver and sbt-version-policy to work correctly
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 tastyMiMa/test
- name: Run scalafmt check
run: sbt scalafmtCheck
- name: Run version policy check
run: sbt versionPolicyCheck
- name: Run TASTy-MiMa
run: sbt tastyMiMaReportIssues