Skip to content

qtpy can be optional #11

qtpy can be optional

qtpy can be optional #11

Workflow file for this run

name: tests
on:
push:
branches:
- main
paths:
- "svgdatagrabber/**"
- "tests/**"
- ".github/workflows/pytest.yml"
pull_request:
types: [opened, reopened, synchronize]
paths:
- "svgdatagrabber/**"
- "tests/**"
- ".github/workflows/pytest.yml"
workflow_dispatch:
concurrency:
group: pytest-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: |
3.8
3.9
3.10
3.11
3.12
3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox