chore(deps): update dependency sbt/sbt to v1.10.6 #921
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: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
Build: | |
strategy: | |
matrix: | |
os: [ windows, macos, ubuntu ] | |
runs-on: ${{ matrix.os }}-latest | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Run test and coverage | |
run: sbt scalafmtCheck scalafmtCheckAll clean test jacoco | |
- name: SonarCloud | |
if: runner.os == 'Linux' | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |