π« (RobotKit): Experiment on tablet reinforcers capacity #4671
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Leka - iOS Monorepo | |
# Copyright APF France handicap | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Linter - SwiftLint | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- "**/*.swift" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
swift_format: | |
name: swiftlint | |
runs-on: [ubuntu-24.04] | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Collect Workflow Telemetry | |
uses: catchpoint/workflow-telemetry-action@v2 | |
with: | |
comment_on_pr: false | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
lfs: false | |
- name: Set up mise | |
uses: jdx/mise-action@v2 | |
with: | |
version: 2025.1.7 | |
install: true | |
cache: true | |
- name: Run swiftlint | |
run: | | |
echo "" | |
echo "πββοΈ Running swiftlint on modified files π€΅ββοΈ" | |
which swiftlint | |
swiftlint --version | |
git diff HEAD^1 HEAD --name-only --diff-filter=AMCR \ | |
| grep -E "\.swift\$$" \ | |
|| echo "No files added nor modified!" | |
git diff HEAD^1 HEAD --name-only --diff-filter=AMCR \ | |
| grep -E "\.swift\$$" \ | |
| xargs --no-run-if-empty swiftlint lint --quiet --reporter github-actions-logging |