Skip to content

XDG support, migrated to pyproject.toml, updated Docker config paths #152

XDG support, migrated to pyproject.toml, updated Docker config paths

XDG support, migrated to pyproject.toml, updated Docker config paths #152

Workflow file for this run

name: Tests
on:
push:
branches: [main]
paths-ignore: [ '*.md', '*.rst']
pull_request:
paths-ignore: [ '*.md', '*.rst' ]
jobs:
tests:
name: ${{ matrix.name || matrix.python }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
include:
- {python: '3.13', tox: 'py313'}
- {python: '3.12', tox: 'py312'}
- {python: '3.11', tox: 'py311'}
- {python: '3.10', tox: 'py310'}
- {python: '3.9', tox: 'py39'}
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-python@v5.4.0
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
cache: pip
- run: pip install tox
- run: tox run -e ${{ matrix.tox }}