Skip to content

Python api tool v2

Python api tool v2 #1

Workflow file for this run

name: tests
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dev deps
run: pip install -e ".[dev]"
- name: Run tests
run: pytest --tb=short