Skip to content

mathieu/feature/Move Library from RootAccount to its own Firestore Collection #2678

mathieu/feature/Move Library from RootAccount to its own Firestore Collection

mathieu/feature/Move Library from RootAccount to its own Firestore Collection #2678

# Leka - iOS Monorepo
# Copyright APF France handicap
# SPDX-License-Identifier: Apache-2.0
name: Linter - pre-commit hooks
on:
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
swift_format:
name: pre-commit hooks
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
files: [changed_files, all_files]
permissions:
pull-requests: write
steps:
- name: Collect Workflow Telemetry
uses: catchpoint/workflow-telemetry-action@v2
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
lfs: true
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: "pip"
- name: Set up mise
uses: jdx/mise-action@v2
with:
version: 2024.12.4
install: true
cache: true
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
pre-commit --version
- name: Install tools
run: |
npm install -g ajv-cli
pre-commit install
pre-commit autoupdate
- name: Cache pre-commit
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: |
pre-commit-${{ runner.os }}-
pre-commit-
- name: Run pre-commit hooks --all-files
if: matrix.files == 'all_files'
run: |
pre-commit run --show-diff-on-failure --color=always --all-files
pre-commit gc
- name: Run pre-commit hooks --files
if: matrix.files == 'changed_files'
run: |
pre-commit run --show-diff-on-failure --color=always --files $(git diff --name-only -r HEAD^1 HEAD --diff-filter=AMCR)