Skip to content

Add ability to send emails and notifications from the Messaging Center #1311

Add ability to send emails and notifications from the Messaging Center

Add ability to send emails and notifications from the Messaging Center #1311

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