Skip to content

List Admins that are also Locale Managers or Translators as members of these groups in the Locale Contributors page #1018

List Admins that are also Locale Managers or Translators as members of these groups in the Locale Contributors page

List Admins that are also Locale Managers or Translators as members of these groups in the Locale Contributors page #1018

Workflow file for this run

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:
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`