Skip to content

Update test_pytest.yml #11

Update test_pytest.yml

Update test_pytest.yml #11

Workflow file for this run

name: 🌱💚🧬
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run uv for type checking (via mypy) and testing (via pytest)
run: |
uv run mypy */*.py
uv run pytest -s