Skip to content

Merge pull request #17 from PSchmitz-Valckenberg/feat/step-17-repetit… #28

Merge pull request #17 from PSchmitz-Valckenberg/feat/step-17-repetit…

Merge pull request #17 from PSchmitz-Valckenberg/feat/step-17-repetit… #28

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: Build & test (JDK 21)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '21'
cache: maven
- name: Build and run all tests
run: mvn -B -ntp verify