Skip to content

feat: sync OpenAPI schema to v3.6.0 #1688

feat: sync OpenAPI schema to v3.6.0

feat: sync OpenAPI schema to v3.6.0 #1688

name: Functional tests
on:
workflow_dispatch:
push:
branches-ignore:
- main
schedule:
- cron: "0 5 * * *"
jobs:
set_datadog_team:
name: 'Set Datadog team'
uses: fingerprintjs/dx-team-toolkit/.github/workflows/set-datadog-team.yml@v1
secrets:
DD_API_KEY: ${{ secrets.INTEGRATIONS_DATADOG_API_KEY }}
functional_tests:
name: Functional tests for Python ${{ matrix.python-version }}
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
max-parallel: 1
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.11" ]
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: "Install dependencies"
run: uv sync
- name: "Try to get data using SDK"
run: "uv run python ./run_checks.py"
env:
PRIVATE_KEY: "${{ secrets.PRIVATE_KEY }}"