Skip to content

chore(deps-dev): bump faker from 23.2.0 to 23.2.1 (#272) #72

chore(deps-dev): bump faker from 23.2.0 to 23.2.1 (#272)

chore(deps-dev): bump faker from 23.2.0 to 23.2.1 (#272) #72

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.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 }}