Skip to content

chore(java-deps): bump the all group with 6 updates #1284

chore(java-deps): bump the all group with 6 updates

chore(java-deps): bump the all group with 6 updates #1284

Workflow file for this run

name: PreCommit
on:
pull_request:
types: [ labeled ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
jobs:
build:
if: ${{ github.event.label.name == 'v1-engine-changed' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '21'
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: build
run: |
./mvnw clean install -B -DskipTests
- name: unit tests
run: |
./mvnw test -B --fail-at-end -pl !:wren-tests