🔀 :: (#729) myplylist 이미지 선택 옵션 팝업 및 이미지 확인 VC 연결 #802
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: SwiftLint | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/SwiftLint.yml" | |
- ".swiftlint.yml" | |
- "**/*.swift" | |
jobs: | |
swiftlint: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: GitHub Action for SwiftLint | |
uses: norio-nomura/[email protected] | |
- name: Comment success result to PR | |
uses: mshick/add-pr-comment@v2 | |
if: ${{ success() }} | |
with: | |
message: "## ✅ Successful finished SwiftLint" | |
- name: Comment failure result ot PR | |
uses: mshick/add-pr-comment@v2 | |
if: ${{ failure() }} | |
with: | |
message: "## ❌ Error detected on SwiftLint" |