Bump actions/labeler from 5.0.0.pre.alpha.1 to 5 #1361
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: Run Maven Tests | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ main, master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '8' | |
settings-path: ${{ github.workspace }} | |
- name: Load local Maven repository cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Run tests | |
run: mvn clean verify |