Skip to content

Add integration tests #1

Add integration tests

Add integration tests #1

name: Integration Tests
on:
pull_request:
push:
branches: [main]
concurrency:
group: python-integration-tests-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
integration-tests:
runs-on: ubuntu-latest
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