Skip to content

ci: bump the github-actions group across 1 directory with 5 updates #45

ci: bump the github-actions group across 1 directory with 5 updates

ci: bump the github-actions group across 1 directory with 5 updates #45

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Java 17
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '17'
cache: maven
- name: Build and test
run: mvn verify
- name: Static analysis
run: mvn spotbugs:check -DfailOnError=true