Skip to content

Implement GraphicWalker.add_chart and support vega-lite export #35

Implement GraphicWalker.add_chart and support vega-lite export

Implement GraphicWalker.add_chart and support vega-lite export #35

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, synchronize, draft]
push:
branches: [main]
jobs:
pr_checks:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade uv
uv venv
uv pip install -e .[dev,tests]
- name: Run pre-commit
uses: pre-commit/[email protected]
- name: Run pytest
run: |
source .venv/bin/activate
pytest tests