Skip to content

feat: add Lemmy username validator #13

feat: add Lemmy username validator

feat: add Lemmy username validator #13

Workflow file for this run

name: Lint & Type Checks
on:
pull_request:
permissions:
contents: read
jobs:
lint:
name: Lint & types (ruff + mypy)
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install linters
run: |
python -m pip install --upgrade pip
pip install httpx colorama types-colorama
pip install ruff mypy
- name: Run ruff
run: ruff check .
- name: Run mypy
run: mypy user_scanner