Skip to content

Document Windows OpenSSH safety boundaries #3

Document Windows OpenSSH safety boundaries

Document Windows OpenSSH safety boundaries #3

Workflow file for this run

name: tests
on:
push:
pull_request:
permissions:
contents: read
jobs:
unittest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.11", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
env:
PYTHONDONTWRITEBYTECODE: "1"
run: python -m unittest discover -s tests -v