We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 945a5ba commit a58a351Copy full SHA for a58a351
1 file changed
.github/workflows/swiftlint.yml
@@ -0,0 +1,25 @@
1
+name: SwiftLint
2
+on:
3
+ push:
4
+ branches:
5
+ - 'main'
6
+ paths:
7
+ - '.github/workflows/swiftlint.yml'
8
+ - '.swiftlint.yml'
9
+ - '**/*.swift'
10
+ pull_request:
11
12
13
14
15
16
17
+jobs:
18
+ SwiftLint:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v1
22
+ - name: GitHub Action for SwiftLint with --strict
23
+ uses: norio-nomura/action-swiftlint@3.2.1
24
+ with:
25
+ args: --strict
0 commit comments