Skip to content

Bump actions/checkout from 4 to 6 #35

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #35

name: Windows Tests
on: pull_request
jobs:
pytest:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', 3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[test]
- name: Run Pytest
run: |
pytest -v --cov=gaps --cov-report=html --cov-branch --cov-report=xml:coverage.xml --cov-fail-under=95