Update slf4j-api, slf4j-log4j12 to 2.0.16 #630
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: ci | |
on: [push, pull_request] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: actions/setup-java@v3 | |
with: | |
cache: "sbt" | |
distribution: "temurin" | |
java-version: "17" | |
- run: 'sbt "; +scalafmtCheckAll; scalafmtSbtCheck" "; scalafixEnable; scalafix --check; test:scalafix --check"' | |
mimaReport: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: actions/setup-java@v3 | |
with: | |
cache: "sbt" | |
distribution: "temurin" | |
java-version: ${{matrix.java}} | |
- run: 'sbt "++${{matrix.scala}} mimaReportBinaryIssues"' | |
strategy: | |
matrix: | |
java: | |
- "8" | |
- "11" | |
- "17" | |
scala: | |
- "2.11.12" | |
- "2.12.17" | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: actions/setup-java@v3 | |
with: | |
cache: "sbt" | |
distribution: "temurin" | |
java-version: ${{matrix.java}} | |
- run: 'sbt "++${{matrix.scala}} test"' | |
strategy: | |
matrix: | |
java: | |
- "8" | |
- "11" | |
- "17" | |
scala: | |
- "2.12.17" | |
- "2.13.8" | |
testWithCoverageReport: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: actions/setup-java@v3 | |
with: | |
cache: "sbt" | |
distribution: "temurin" | |
java-version: 17 | |
- run: sbt coverage clean test coverageReport | |
- run: "bash <(curl -s https://codecov.io/bash)" |