chore: Disable PyPI attestations #335
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' | |
jobs: | |
test_tap: | |
name: Test Tap connectivity and Configuration | |
runs-on: ubuntu-latest | |
env: | |
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- python-version: "3.8" | |
toxenv: py38 | |
- 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.11" | |
toxenv: deps | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install Tox | |
run: | | |
pipx install tox | |
- name: Test tap | |
run: | | |
tox -e ${{ matrix.toxenv }} |