Bump junit.version from 5.10.3 to 5.11.1 #203
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Maven Build" | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
maven-compile: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Setup JDK 17" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
architecture: x64 | |
cache: maven | |
- name: "Run Maven 'compile'" | |
run: mvn compile --color always |