Skip to content

Bump actions/checkout from 5 to 6 #364

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #364

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
name: Compile, test, and package modules
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install JDK
uses: actions/setup-java@v5
with:
java-version: 11
distribution: temurin
cache: maven
- name: Compile, test, and package modules
env:
MAVEN_OPTS: '-Dorg.slf4j.simpleLogger.showDateTime=true -Djava.wat.headless=true'
run: ./mvnw --batch-mode --errors --fail-at-end --no-transfer-progress --show-version verify
- name: Generate coverage report
uses: codecov/codecov-action@v4
with:
file: ./**/target/site/jacoco/jacoco.xml
name: codecov