Skip to content

bump version

bump version #2

name: Integration Tests
on:
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
workflow_dispatch:
concurrency:
group: python-integration-tests-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
integration-tests:
runs-on: depot-ubuntu-24.04-16
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Poetry
run: python -m pip install --upgrade pip poetry
- name: Show tool versions
run: |
python --version
poetry --version
- name: Install dependencies
run: poetry install --with dev --no-interaction
- name: Run integration tests
run: poetry run pytest tests/integration