Skip to content

Improved to_simplified accuracy, removed unnecessary setup file #201

Improved to_simplified accuracy, removed unnecessary setup file

Improved to_simplified accuracy, removed unnecessary setup file #201

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
name: Test
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: python -m pip install pytest .
- name: Run tests
run: pytest