Skip to content

Add linting (ruff) and type checking (mypy) #2

Add linting (ruff) and type checking (mypy)

Add linting (ruff) and type checking (mypy) #2

Workflow file for this run

name: Felt Python Type Checking
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Dependencies
run: pip install mypy certifi
- name: Run mypy
run: mypy .