test : Jwt 필터, 프로바이더, 팩토리 테스트 추가 #59
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: Format | |
on: [ push, pull_request ] | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
- uses: actions/checkout@v3 | |
- uses: axel-op/googlejavaformat-action@v3 | |
with: | |
args: "--replace" | |
skip-commit: true |