Skip to content

Merge pull request #912 from jakob-bagterp/dependabot/pip/mkdocs-mate… #3174

Merge pull request #912 from jakob-bagterp/dependabot/pip/mkdocs-mate…

Merge pull request #912 from jakob-bagterp/dependabot/pip/mkdocs-mate… #3174

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.11", "3.12", "3.13"]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- 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