Skip to content

makefile(streamlit the same, stlite added, bug for display fixed, out… #1

makefile(streamlit the same, stlite added, bug for display fixed, out…

makefile(streamlit the same, stlite added, bug for display fixed, out… #1

Workflow file for this run

name: PR Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run ruff
run: uv run ruff check .
- name: Run mypy
run: uv run mypy utils models
- name: Run pytest with coverage
run: uv run pytest tests/ -v --cov=utils --cov=models --cov-report=term-missing