ci: Bump pypa/gh-action-pypi-publish from 1.10.2 to 1.11.0 in the act… #368
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: Test Tap | |
on: | |
pull_request: | |
paths-ignore: | |
- '**/README.md' | |
push: | |
branches: [main] | |
paths-ignore: | |
- '**/README.md' | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
test_tap: | |
name: Test Tap connectivity and Configuration | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: "3.9" | |
toxenv: py39 | |
- python-version: "3.10" | |
toxenv: py310 | |
- python-version: "3.11" | |
toxenv: py311 | |
- python-version: "3.12" | |
toxenv: py312 | |
- python-version: "3.13" | |
toxenv: py313 | |
- python-version: "3.x" | |
toxenv: deps | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- uses: astral-sh/setup-uv@v3 | |
with: | |
version: ">=0.4.18" | |
- run: uv tool install tox | |
- run: uvx tox -e ${{ matrix.toxenv }} |