Skip to content

feat(wrapper): auto-populate result.json files_changed from git snapshot #18

feat(wrapper): auto-populate result.json files_changed from git snapshot

feat(wrapper): auto-populate result.json files_changed from git snapshot #18

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