Skip to content

Add type hints to sruthi library and integrate mypy type checking #102

Add type hints to sruthi library and integrate mypy type checking

Add type hints to sruthi library and integrate mypy type checking #102

Workflow file for this run

name: Tests + Linting Python
on:
pull_request:
push:
branches: [master]
jobs:
lint_python:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
pip install -e .
- run: ./validate.sh