Skip to content

Site: middleware docs update #65

Site: middleware docs update

Site: middleware docs update #65

Workflow file for this run

name: Windows
on:
push:
branches:
- main
- '[0-9]+.[0-9]+'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install tooling and run tests
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
tox -e tests