Add Snapshot Tests to CI

Closes gh-933
This commit is contained in:
Josh Cummings
2024-10-01 16:30:09 -06:00
parent 64c1eff817
commit 6f7b1fa71e
2 changed files with 20 additions and 2 deletions

View File

@@ -21,6 +21,17 @@ jobs:
java-version: ${{ matrix.jdk }}
distribution: temurin
secrets: inherit
test:
name: Test Against Snapshots
uses: spring-io/spring-security-release-tools/.github/workflows/test.yml@v1
strategy:
matrix:
include:
- java-version: 21-ea
- java-version: 17
with:
java-version: ${{ matrix.java-version }}
test-args: --refresh-dependencies -PforceMavenRepositories=snapshot -PisOverrideVersionCatalog -PtestToolchain=17 -PspringFrameworkVersion=6.2.+ -PspringDataVersion=2024.0.+ --stacktrace
deploy-artifacts:
name: Deploy Artifacts
needs: [ build ]