Skip to content
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.

Merge branch 'fix-dumper-compat' into v2_main #41

Merge branch 'fix-dumper-compat' into v2_main

Merge branch 'fix-dumper-compat' into v2_main #41

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.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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