Skip to content

๐Ÿ”€ :: (#550) ์„ค์ • ๋„ค๋น„๊ฒŒ์ด์…˜ ๋ฒ„ํŠผ ํ•˜์ด๋ผ์ดํŒ… ํšจ๊ณผ ์ถ”๊ฐ€ #577

๐Ÿ”€ :: (#550) ์„ค์ • ๋„ค๋น„๊ฒŒ์ด์…˜ ๋ฒ„ํŠผ ํ•˜์ด๋ผ์ดํŒ… ํšจ๊ณผ ์ถ”๊ฐ€

๐Ÿ”€ :: (#550) ์„ค์ • ๋„ค๋น„๊ฒŒ์ด์…˜ ๋ฒ„ํŠผ ํ•˜์ด๋ผ์ดํŒ… ํšจ๊ณผ ์ถ”๊ฐ€ #577

Workflow file for this run

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/action-swiftlint@3.2.1
- 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"