Skip to content

Record compas_timber version in BTLx FileHistory ProgramVersion #1075

Record compas_timber version in BTLx FileHistory ProgramVersion

Record compas_timber version in BTLx FileHistory ProgramVersion #1075

Workflow file for this run

name: coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
coverage:
if: "!contains(github.event.pull_request.labels.*.name, 'docs-only')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.12"
activate-environment: true
- name: Run tests collecting coverage reports
run: |
uv pip install -e ".[dev]"
pytest --cov src/compas_timber --cov-report=html
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}