Skip to content

IntegrationTests

IntegrationTests #1245

name: IntegrationTests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Setup up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set env file
run: cp example_env .env
- name: Run integration tests
run: make integration_tests