Skip to content

Merge branch 'main' into renovate/paddyroddy.github #26

Merge branch 'main' into renovate/paddyroddy.github

Merge branch 'main' into renovate/paddyroddy.github #26

Workflow file for this run

---
name: Test
on:
push:
branches:
- main
- renovate/**
pull_request:
workflow_dispatch:
concurrency:
cancel-in-progress: true
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
jobs:
test:
name: ${{ matrix.os }} py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/python/tox@e59369bbd745ef1eae9b8327fba32a4f87ff13ca # v0
with:
cache-path: .tox
operating-system: ${{ matrix.os }}
pyproject-toml: ./pyproject.toml
python-version: ${{ matrix.python-version }}