Skip to content

refactor: reorganize package into subpackages (figure/, axes/, plot1d/, plot2d/, plot3d/, widgets/) #26

refactor: reorganize package into subpackages (figure/, axes/, plot1d/, plot2d/, plot3d/, widgets/)

refactor: reorganize package into subpackages (figure/, axes/, plot1d/, plot2d/, plot3d/, widgets/) #26

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: Set up uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
enable-cache: true
- name: Install dependencies
run: uv sync --group dev
- name: Install Playwright browsers
run: uv run playwright install --with-deps chromium
- name: Run tests with coverage
run: uv run pytest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: coverage.xml
fail_ci_if_error: false
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}