File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111
1212jobs :
1313 lint :
14- runs-on : macos-13
14+ runs-on : macos-latest
1515 environment : default
1616 steps :
1717 - uses : actions/checkout@v4
18+ - name : SwiftFormat version
19+ run : swiftformat --version
1820 - name : Format lint
1921 run : swiftformat --lint .
22+ - name : Install SwiftLint
23+ run : brew install swiftlint
24+ - name : SwiftLint version
25+ run : swiftlint --version
2026 - name : Lint
21- run : swiftlint .
27+ run : swiftlint lint --quiet
2228 test :
29+ runs-on : macos-latest
2330 environment : default
24- strategy :
25- matrix :
26- include :
27- - os : macos-14
28- xcode : " 15.3" # Swift 5.10
29- runs-on : ${{ matrix.os }}
3031 steps :
3132 - uses : actions/checkout@v4
32- - name : Select Xcode ${{ matrix.xcode }}
33- run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
3433 - name : Run Tests
3534 run : swift test --enable-code-coverage
3635 - name : Swift Coverage Report
You can’t perform that action at this time.
0 commit comments