Skip to content

Bump jenkins.version from 2.452.1 to 2.452.3 #2621

Bump jenkins.version from 2.452.1 to 2.452.3

Bump jenkins.version from 2.452.1 to 2.452.3 #2621

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
build:
name: Build on JDK ${{ matrix.java }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [17]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn -Pjacoco clean verify -B -V --no-transfer-progress ${{ matrix.flags }}
- name: Codecov coverage
uses: codecov/codecov-action@v4
with:
file: '*jacoco.xml'