Skip to content

Merge branch 'bugfix-geometry-type' into v2_main #26

Merge branch 'bugfix-geometry-type' into v2_main

Merge branch 'bugfix-geometry-type' into v2_main #26

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- v2_main
jobs:
test:
name: Testing on Python ${{ matrix.python-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .[dev]
- name: Run tests
run: |
ward test --test-output-style=dots-global --order=standard