ease lint

This commit is contained in:
Peter Steinberger 2025-05-29 18:30:01 +02:00
parent 4c7ce7d1ac
commit 3e85d53e37

View File

@ -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: |