Skip to content
This repository was archived by the owner on Jul 14, 2026. It is now read-only.

Add CHANGELOG.md (Keep-a-Changelog, v0.1.0) (#4) #8

Add CHANGELOG.md (Keep-a-Changelog, v0.1.0) (#4)

Add CHANGELOG.md (Keep-a-Changelog, v0.1.0) (#4) #8

Workflow file for this run

name: tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pytest:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install test deps
run: pip install pytest
- name: Run wrapper tests
run: python -m pytest tests/ -q
shell: bash