Skip to content

Issue-361: Add prudent information about a publishing of checks. #768

Issue-361: Add prudent information about a publishing of checks.

Issue-361: Add prudent information about a publishing of checks. #768

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
java: [11]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
name: on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
run: mvn -Penable-jacoco clean verify -B -V -ntp
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: '*jacoco.xml'