Skip to content

build(deps-dev): bump ch.qos.logback:logback-classic from 1.6.1 to 1.… #74

build(deps-dev): bump ch.qos.logback:logback-classic from 1.6.1 to 1.…

build(deps-dev): bump ch.qos.logback:logback-classic from 1.6.1 to 1.… #74

Workflow file for this run

name: Maven Build
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: maven-build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: maven build
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v7
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
cache: maven
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: |
chmod +x ./mvnw
./mvnw -B package --file pom.xml
- name: Upload coverage reports to Codecov
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false