Skip to content

Use standard-library logging for verbose logging #86

Use standard-library logging for verbose logging

Use standard-library logging for verbose logging #86

Workflow file for this run

---
name: Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
# Install
- run: pip install wheel
- run: pip install .
- run: pip install -r tests/requirements.txt
# Test
- run: pytest
# Test again with oldest NumPy for ABI incompatibilities
- run: pip install --force-reinstall oldest-supported-numpy trimesh
- run: pytest