misc: add Containerfile #3
Workflow file for this run
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: Integration tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Apt update | |
run: sudo apt update | |
- name: Install common test dependencies | |
uses: ./.github/workflows/testdeps.yml | |
- name: Install integration test env | |
run: | | |
sudo apt install -y pytest golang | |
- name: Run integration tests via pytest | |
run: | | |
# use "-s" for now for easier debugging | |
sudo pytest -s -v |