Skip to content

chore: Use mypy correctly and introduce ty #543

chore: Use mypy correctly and introduce ty

chore: Use mypy correctly and introduce ty #543

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
with:
version: ">=0.9"
- run: >
uvx
--with tox-uv
tox -e ${{ matrix.toxenv }}