Update FoodRepublic (#1444) #3083
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
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 |