Skip to content

Merge pull request #124 from kaifcodec/feat/email-osint #1

Merge pull request #124 from kaifcodec/feat/email-osint

Merge pull request #124 from kaifcodec/feat/email-osint #1

Workflow file for this run

name: Lint & Type Checks
on:
push:
branches: [ main ]
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