Skip to content

Rename .yml to .yaml #1

Rename .yml to .yaml

Rename .yml to .yaml #1

Workflow file for this run

---
name: Test
on:
push:
branches:
- main
- renovate/**
pull_request:
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@c3bb562d91f4004231cdd8497106a209a7531f40 # v0
with:
cache-path: |-
.tox
operating-system: ${{ matrix.os }}
pyproject-toml: ./pyproject.toml
python-version: ${{ matrix.python-version }}