Skip to content

Update actions/checkout action to v7 #1019

Update actions/checkout action to v7

Update actions/checkout action to v7 #1019

Workflow file for this run

name: build
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '11'
- name: maven build
run: mvn --batch-mode --errors --show-version --no-transfer-progress clean verify jacoco:report
- name: code coverage
uses: coverallsapp/github-action@v2
with:
file: "**/target/site/jacoco/jacoco.xml"