Bump actions/checkout from 3 to 4 #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests on Windows | |
on: [pull_request] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Versioneer only generates correct versions with a full fetch | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install prefect | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[dev] | |
- name: Test with pytest | |
run: | | |
pytest tests -v --dist=loadfile -n auto |