Skip to content

fix: Strip email subject to remove new lines chars #298

fix: Strip email subject to remove new lines chars

fix: Strip email subject to remove new lines chars #298

Workflow file for this run

name: Lint
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ruff:
name: Ruff
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Ruff
run: python -m pip install --upgrade ruff
- name: Ruff check
run: ruff check .
- name: Ruff format (check only)
run: ruff format --check