Skip to content

ci: bump poetry-dynamic-versioning from 1.1.1 to 1.2.0 in /.github/wo… #8

ci: bump poetry-dynamic-versioning from 1.1.1 to 1.2.0 in /.github/wo…

ci: bump poetry-dynamic-versioning from 1.1.1 to 1.2.0 in /.github/wo… #8

Workflow file for this run

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/workflows/constraints.txt
strategy:
fail-fast: true
matrix:
include:
- python-version: "3.7"
toxenv: py37
- 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.11"
toxenv: deps
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Tox
run: |
pipx install tox
- name: Test tap
run: |
tox -e ${{ matrix.toxenv }}