Skip to content

Bump org.axonframework:axon-bom from 4.8.2 to 4.9.2 #180

Bump org.axonframework:axon-bom from 4.8.2 to 4.9.2

Bump org.axonframework:axon-bom from 4.8.2 to 4.9.2 #180

name: CI with Maven - Test and Build
# Trigger the workflow pull request,
# but only for the main branch
on:
pull_request:
branches: [ main ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test and Build with Maven
run: ./mvnw --batch-mode clean verify -DskipIntegrationTests=false