Skip to content

feat: wip medprompt #75

feat: wip medprompt

feat: wip medprompt #75

Workflow file for this run

name: Python Lint and Format
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint-and-format:
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 --output-format=github .
- name: Check formatting with Ruff
run: ruff format --check .