Recommend getting the sub claim to guarantee uniqueness in the JsonWebToken.getName JavaDocs #398
Workflow file for this run
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: MicroProfile JWT Build | |
on: | |
push: | |
paths-ignore: | |
- 'editorconfig' | |
- '.gitattributes' | |
- '.gitignore' | |
- 'CONTRIBUTING*' | |
- 'CODEOWNERS' | |
- 'KEYS' | |
- 'LICENSE' | |
- 'NOTICE' | |
- 'README*' | |
- 'site.yaml' | |
pull_request: | |
paths-ignore: | |
- 'editorconfig' | |
- '.gitattributes' | |
- '.gitignore' | |
- 'CONTRIBUTING*' | |
- 'CODEOWNERS' | |
- 'KEYS' | |
- 'LICENSE' | |
- 'NOTICE' | |
- 'README*' | |
- 'site.yaml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [8, 11] | |
name: build with jdk ${{matrix.java}} | |
steps: | |
- uses: actions/checkout@v2 | |
name: checkout | |
- uses: actions/setup-java@v2 | |
name: set up jdk ${{matrix.java}} | |
with: | |
java-version: ${{matrix.java}} | |
distribution: 'temurin' | |
- name: build with maven | |
run: mvn verify |