Skip to content

updated changelog, copyrights, version 1.0.0 #98

updated changelog, copyrights, version 1.0.0

updated changelog, copyrights, version 1.0.0 #98

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: python -m pip install --upgrade pip
- run: pip install pytest
- run: pip install -e .
- run: pytest tests -v