Skip to content

Update all non-major dependencies #400

Update all non-major dependencies

Update all non-major dependencies #400

name: Qloud Spring Boot Starter with Maven
# Build on every branch, but only if the files we care about have changed
on:
push:
paths:
- "qloud-spring-boot-starter/**"
- ".github/workflows/qloud-spring-boot-starter-ci.yml"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: "zulu"
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
working-directory: qloud-spring-boot-starter
run: ./mvnw -B verify --file pom.xml