Skip to content

Merge pull request #579 from jakob-bagterp/dependabot/pip/mkdocstring… #1608

Merge pull request #579 from jakob-bagterp/dependabot/pip/mkdocstring…

Merge pull request #579 from jakob-bagterp/dependabot/pip/mkdocstring… #1608

Workflow file for this run

name: Test
on:
pull_request:
branches:
- "**"
push:
branches:
- master
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run tests with Tox
run: tox