Fix broken team dashboard for non-authenticated users (#2915) #877
Workflow file for this run
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: | |
- master | |
paths: | |
- pontoon/**.py | |
- .github/workflows/py-lint.yml | |
- requirements/lint.txt | |
pull_request: | |
branches: | |
- master | |
paths: | |
- pontoon/**.py | |
- .github/workflows/py-lint.yml | |
- requirements/lint.txt | |
workflow_dispatch: | |
jobs: | |
flake8: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install Dependencies | |
run: | | |
pip install -U pip | |
pip install -r requirements/lint.txt | |
- name: flake8 | |
run: flake8 pontoon | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install Dependencies | |
run: | | |
pip install -U pip | |
pip install -r requirements/lint.txt | |
- name: black | |
run: black --check pontoon | |
pyupgrade: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install Dependencies | |
run: | | |
pip install -U pip | |
pip install -r requirements/lint.txt | |
- name: pyupgrade | |
run: pyupgrade --py39-plus *.py `find pontoon -name \*.py` |