We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d117b3 commit d275786Copy full SHA for d275786
README.md
@@ -12,3 +12,25 @@ steps:
12
with:
13
version: latest
14
```
15
+
16
+Here is a full example of a workflow file:
17
18
+```yaml
19
+# .github/workflows/swiftlint.yml
20
+name: SwiftLint
21
22
+on:
23
+ push:
24
+ branches: [ "main" ]
25
+ pull_request:
26
27
28
+jobs:
29
+ SwiftLint:
30
+ runs-on: ghcr.io/cirruslabs/macos-runner:sonoma
31
+ steps:
32
+ - uses: actions/checkout@v4
33
+ - uses: cirruslabs/swiftlint-action@v1
34
+ with:
35
+ version: latest
36
+```
0 commit comments