Skip to content

Add Streamlit interface for benchmark application #8

Add Streamlit interface for benchmark application

Add Streamlit interface for benchmark application #8

Workflow file for this run

name: Code Quality
on:
push:
branches: [ main, copilot/* ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Lint with ruff
run: |
ruff check src/ common/ tests/ --output-format=github
- name: Check formatting with ruff
run: |
ruff format --check src/ common/ tests/