Skip to content

Update FoodRepublic (#1444) #3083

Update FoodRepublic (#1444)

Update FoodRepublic (#1444) #3083

Workflow file for this run

name: linters
on:
push:
branches: [ main, v14 ]
pull_request:
branches: [ main, v14 ]
types: [ opened, synchronize, reopened ]
jobs:
linters:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install linters related packages
run: pip install ".[linters]"
- name: Run pre-commit hooks
run: pre-commit run --all-files