Skip to content

add missing module

add missing module #42

name: motivation-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 mypy ruff
pip install -r requirements.txt
- name: Lint with Ruff
run: ruff $(git ls-files '*.py')
- name: Analysing with Mypy
run: |
mypy --strict $(git ls-files '*.py')