Bump the dependencies group across 1 directory with 11 updates #1903
Workflow file for this run
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: Build & Test | |
on: | |
push: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened, ready_for_review, edited] | |
env: | |
# Workaround testsuite locale issue | |
LANG: en_US.UTF-8 | |
jobs: | |
build-test: | |
name: "Build & Test" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: n1hility/cancel-previous-runs@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up JDK 21 | |
# Uses sha for added security since tags can be updated | |
uses: joschi/setup-jdk@e87a7cec853d2dd7066adf837fe12bf0f3d45e52 | |
with: | |
java-version: openjdk21 | |
- name: Cache Maven Repository | |
id: cache-maven | |
uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
- name: Build | |
run: | | |
mvn -e -B -DskipTests=true clean package -Dlib -Dacceptance-test -Dcommunity-app | |
- name: Test | |
run: | | |
mvn -e -B verify -Dlib -Dacceptance-test -Dcommunity-app |