Skip to content

16.0b1 drop notes in favor of reviewed notes #50

16.0b1 drop notes in favor of reviewed notes

16.0b1 drop notes in favor of reviewed notes #50

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- { python: "3.9", os: ubuntu-22.04 }
- { python: "3.10", os: windows-2022 }
- { python: "3.11", os: macos-latest }
- { python: "3.12", os: windows-latest }
- { python: "3.13", os: ubuntu-latest }
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python }}
cache: pip
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run tests
run: |
pytest -v