Merge pull request #4 from odufour7/main #83
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: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- uses: streamlit/[email protected] | |
with: | |
app-path: app.py | |
ruff: true | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install black mypy ruff | |
pip install -r requirements.txt | |
- name: Lint with Ruff | |
run: ruff . | |
- name: Format with Black | |
run: | | |
black --diff $(git ls-files '*.py') | |
- name: Analysing with Mypy | |
run: | | |
mypy --strict $(git ls-files '*.py') | |