matrix-reminder-bot/.github/workflows/lint.yml

41 lines
982 B
YAML

# This workflow will install Python dependencies, then lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U -e ".[dev]"
- name: Check import statement sorting
run: |
isort -c --df matrix_reminder_bot matrix-reminder-bot
- name: Python syntax errors, undefined names, etc.
run: |
flake8 . --count --show-source --statistics
- name: PEP8 formatting
run: |
black --check --diff matrix_reminder_bot/ matrix-reminder-bot