Skip to content

ci: bump the actions group with 3 updates (#483) #557

ci: bump the actions group with 3 updates (#483)

ci: bump the actions group with 3 updates (#483) #557

Workflow file for this run

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.10"
toxenv: py310
- python-version: "3.11"
toxenv: py311
- python-version: "3.12"
toxenv: py312
- python-version: "3.13"
toxenv: py313
- python-version: "3.14"
toxenv: py314
- python-version: "3.x"
toxenv: deps
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
with:
version: ">=0.9"
- run: >
uvx
--with tox-uv
tox -e ${{ matrix.toxenv }}