CORE-69: Minor and patch updates - sentry-logback to 8.22.0 - google-cloud-nio to 0.128.5 - sbt-jmh to 0.4.8 - guava to 33.5.0-jre - jwt-core to 11.0.3 - spring-web to 6.2.11 - sbt and 2 more to 1.11.6 - scala-logging to 3.9.6 - logback-classic to 1.5.19 #4324
Workflow file for this run
This file contains hidden or 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: | |
pull_request: | |
branches: [ develop ] | |
push: | |
paths-ignore: | |
- 'README.md' | |
branches: [ develop ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: sbt/setup-sbt@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v5 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: 'sbt' | |
- name: Run tests | |
env: | |
AGORA_URL_ROOT: http://localhost:8989 | |
RAWLS_URL_ROOT: http://localhost:8990 | |
THURLOE_URL_ROOT: http://localhost:8991 | |
FIRE_CLOUD_ID: 123 | |
run: sbt clean coverage test coverageReport | |
- uses: codecov/codecov-action@v5 | |
if: ${{ always() }} |