Skip to content

Add v3 scoring model (Diet Egg) and Fresh Egg advisory #110

Add v3 scoring model (Diet Egg) and Fresh Egg advisory

Add v3 scoring model (Diet Egg) and Fresh Egg advisory #110

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
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 uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: uv sync
- name: Lint
run: uv run ruff check src/ tests/ scripts/
- name: Type check
run: uv run mypy src/good_egg/
- name: Test
run: uv run pytest --cov=good_egg -v