Skip to content

feat: Differentiable Rendering / Scene fiting #33

feat: Differentiable Rendering / Scene fiting

feat: Differentiable Rendering / Scene fiting #33

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install "jax[cpu]>=0.4.20"
pip install -e ".[dev]" --no-deps
pip install pytest scikit-image matplotlib optax optimistix
- name: Run tests
run: |
pytest tests/ \
--ignore=tests/sdf/primitives/test_common.py \
-q
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files