Skip to content

Integration Tests

Integration Tests #3

Workflow file for this run

name: Integration Tests
on:
workflow_dispatch:
jobs:
test:
name: Test Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Run Integration Tests
uses: ./.github/actions/integration-tests
with:
python-version: ${{ matrix.python-version }}
test-all:
name: All tests passed
runs-on: ubuntu-latest
needs: test
steps:
- name: All tests passed
run: echo "All integration tests passed successfully!"