Skip to content

feat: create trials table builder #37

feat: create trials table builder

feat: create trials table builder #37

Workflow file for this run

name: Lint and run tests
on:
pull_request:
branches:
- main
- dev
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.12' ]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run linter checks
run: uv run ruff check . && uv run ruff format --check . && uv run interrogate --verbose .
- name: Run tests and coverage
run: uv run coverage run -m pytest && uv run coverage report