ease lint
This commit is contained in:
parent
4c7ce7d1ac
commit
3e85d53e37
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -49,12 +49,22 @@ jobs:
|
||||
swift build
|
||||
|
||||
- name: Run SwiftFormat (check only)
|
||||
continue-on-error: true
|
||||
run: |
|
||||
swiftformat --lint .
|
||||
echo "::group::SwiftFormat Check"
|
||||
if ! swiftformat --lint .; then
|
||||
echo "::warning::SwiftFormat found formatting issues"
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Run SwiftLint
|
||||
continue-on-error: true
|
||||
run: |
|
||||
swiftlint lint --strict
|
||||
echo "::group::SwiftLint Check"
|
||||
if ! swiftlint lint; then
|
||||
echo "::warning::SwiftLint found linting issues"
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Run Tests (would require accessibility permissions)
|
||||
run: |
|
||||
|
||||
Loading…
Reference in New Issue
Block a user