Add integration tests to ci #163
This file contains 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: 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 |