Skip to content

support for multiple spring versions #44

support for multiple spring versions

support for multiple spring versions #44

name: Continuous Integration
on:
push:
permissions:
contents: read
packages: read
concurrency:
group: "${{ github.workflow }}-${{ github.ref != 'refs/heads/main' && github.ref || github.run_id }}"
cancel-in-progress: true
jobs:
build-and-run-tests:
name: Build and Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
show-progress: false
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Run Maven
run: mvn -B -s ./.mvn/settings.xml clean verify
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ github.token }}