Skip to content

Allow Custom Voxel Dimension #3

Allow Custom Voxel Dimension

Allow Custom Voxel Dimension #3

Workflow file for this run

name: Python Tests
on:
push:
branches: [ "*" ] # Run on all branches
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -e .
- name: Run example script
run: |
python examples/create_shapes.py
shell: bash
- name: Verify example outputs
run: |
# Check if output files exist
ls -la examples/*.stl || ls -la examples/
shell: bash