Skip to content

version bump

version bump #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv + Python
uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
enable-cache: true
- name: Install dependencies
run: uv sync --dev
- name: Run tests with coverage
run: uv run pytest --cov=pylmm3 --cov-report=term-missing
- name: Write coverage to job summary
if: always()
run: |
echo "## Coverage" >> "$GITHUB_STEP_SUMMARY"
uv run coverage report --format=markdown >> "$GITHUB_STEP_SUMMARY"