Skip to content

Add Python tests badge to README #2

Add Python tests badge to README

Add Python tests badge to README #2

Workflow file for this run

name: Python tests
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
test:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.10', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install
run: pip install ".[test]" -v
- name: Test
run: pytest tests/python/ -v --tb=short