bump version #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |