Skip to content

Add integration tests to ci #163

Add integration tests to ci

Add integration tests to ci #163

Workflow file for this run

name: LOBSTER CI
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
integration-tests:
name: Integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip --break-system-packages
python3 -m pip install -r requirements_dev.txt --break-system-packages
- name: Run integration tests
env:
SKIP_CPP_TESTS: TRUE
run: |
make integration-tests
- name: Setup tmate session
if: failure()
timeout-minutes: 20
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true