Skip to content

chore!: Upgrade dependencies to match generated SDK #428

chore!: Upgrade dependencies to match generated SDK

chore!: Upgrade dependencies to match generated SDK #428

name: Integration tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
tests:
name: Integration tests
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version:
- '3.8'
- '3.12'
- '3.13'
container:
image: python:${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run integration tests
run: |
tox -e integration-tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JWT_CONFIG_BASE_64: ${{ secrets.JWT_CONFIG_BASE_64 }}
ADMIN_USER_ID: ${{ secrets.ADMIN_USER_ID }}