Skip to content

mypy contact_tab

mypy contact_tab #91

name: madras-data-app
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
streamlit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip --quiet
pip install -r requirements.txt --quiet
pip install mypy ruff --quiet
- name: Lint with Ruff
run: ruff check .
- name: Analyze with Mypy
run: mypy --strict $(git ls-files '*.py')
- name: Run Streamlit app
uses: streamlit/[email protected]
with:
app-path: app.py
ruff: true