mypy contact_tab #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |