Skip to content

Bump scala.version from 3.7.3 to 3.7.4 #624

Bump scala.version from 3.7.3 to 3.7.4

Bump scala.version from 3.7.3 to 3.7.4 #624

Workflow file for this run

name: Maven CI
on:
push:
branches:
- "main"
paths-ignore:
- ".gitignore"
- "LICENSE"
- "*.md"
- "*.adoc"
- "*.txt"
pull_request:
paths-ignore:
- ".gitignore"
- "*.md"
- "*.adoc"
- "*.txt"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "21"
cache: "maven"
- name: Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('**/pom.xml', '**/build.gradle', '**/settings.gradle', '**/docker-compose.yml') }}
- name: Build and Test with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./mvnw -B verify
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}