Skip to content

fix(slug): strip cygpath's \\?\ long-path prefix before the drive-let… #340

fix(slug): strip cygpath's \\?\ long-path prefix before the drive-let…

fix(slug): strip cygpath's \\?\ long-path prefix before the drive-let… #340

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install test deps
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
- name: Install Windows tzdata
if: runner.os == 'Windows'
run: pip install tzdata
- name: Run tests
run: pytest