зеркало из https://github.com/mozilla/pontoon.git
36 строки
748 B
YAML
36 строки
748 B
YAML
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
|