We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e4f506 commit 69e43dcCopy full SHA for 69e43dc
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,22 @@
1
+name: Lint Exercises
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ lint:
7
+ runs-on: macos-15
8
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
12
13
+ - name: Install OCLint
14
+ run: brew install oclint
15
16
+ - name: Run OCLint
17
+ run: |
18
+ set -o pipefail
19
+ xcodebuild \
20
+ -project xcodeProject/ObjectiveC.xcodeproj \
21
+ -target OCLint \
22
+ | xcpretty
0 commit comments