Refactor mission state enum #29
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
# PR에서 ktLint 검사 | |
name: reviewdog | |
on: [pull_request] | |
jobs: | |
ktlint: | |
name: Check Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@main | |
- name: ktlint | |
uses: ScaCap/[email protected] | |
with: | |
github_token: ${{ secrets.SECRET_GITHUB_TOKEN }} | |
reporter: github-pr-check | |
level: warning |