chore(deps): update dependency org.junit.jupiter:junit-jupiter to v5.… #400
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: spring-boot-keycloak | |
on: | |
push: | |
paths: | |
- 'spring-boot-keycloak/**' | |
- '.github/workflows/spring-boot-keycloak.yml' | |
pull_request: | |
paths: | |
- 'spring-boot-keycloak/**' | |
- '.github/workflows/spring-boot-keycloak.yml' | |
jobs: | |
keycloak-service: | |
name: Build spring boot using keycloak (service 1) with java version ${{ matrix.java }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 17,18,19 ] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Setup java ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- run: mvn -B -f spring-boot-keycloak clean verify |