tests: introduce tox for local testing of all envs and shore up multi… #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate | |
on: [push, pull_request] | |
jobs: | |
ci: | |
uses: ./.github/workflows/.validate-matrix.yml | |
name: "${{ matrix.os }} (Python ${{ matrix.python-version }})" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
with: | |
runner: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} |