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 a087bb2 commit 1f9b9afCopy full SHA for 1f9b9af
.github/workflows/swiftlint.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
swiftlint:
11
name: Check Code Quality
12
- runs-on: macos-26
+ runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v5
15
@@ -23,7 +23,10 @@ jobs:
23
- name: Install SwiftLint
24
if: steps.cache-swiftlint.outputs.cache-hit != 'true'
25
run: |
26
- brew install swiftlint
+ wget https://github.com/realm/SwiftLint/releases/download/0.57.0/swiftlint_linux.zip
27
+ unzip swiftlint_linux.zip
28
+ sudo mv swiftlint /usr/local/bin/
29
+ sudo chmod +x /usr/local/bin/swiftlint
30
31
- name: Verify SwiftLint installation
32
0 commit comments