Skip to content

Add with_temporary_instance.py that creates an empty instance (#187) #459

Add with_temporary_instance.py that creates an empty instance (#187)

Add with_temporary_instance.py that creates an empty instance (#187) #459

Workflow file for this run

name: Run Tox tests
permissions:
contents: read
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
name: "Python ${{ matrix.python-version }}"
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
fail-fast: false
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
fetch-depth: 0 # fetch all history including tags -- necessary to determine the version from SCM
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Tox flake8
run: tox -e flake8
- name: Tox docs
run: tox -e docs
- name: Tox mypy
run: tox -e mypy
- name: Tox py3
run: tox -e py3