Skip to content

Commit

Permalink
feat: add swiftlint CI step (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski authored Nov 20, 2023
1 parent 7393489 commit 9d52f09
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: SwiftLint

on:
pull_request:
paths:
- ".github/workflows/swiftlint.yml"
- ".swiftlint.yml"
- "**/*.swift"

jobs:
SwiftLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: GitHub Action for SwiftLint
uses: norio-nomura/action-swiftlint@3.2.1

0 comments on commit 9d52f09

Please sign in to comment.