Fixed bugs regarding state preservation (#3356) #198
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: Python linting | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- pontoon/**.py | |
- .github/workflows/py-lint.yml | |
- requirements/lint.txt | |
pull_request: | |
branches: | |
- main | |
paths: | |
- pontoon/**.py | |
- .github/workflows/py-lint.yml | |
- requirements/lint.txt | |
workflow_dispatch: | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install Dependencies | |
run: | | |
pip install -U pip | |
pip install -r requirements/lint.txt | |
- name: ruff lint | |
run: ruff check pontoon | |
- name: ruff format | |
run: ruff format --check pontoon |