Skip to content

misc: add Containerfile #3

misc: add Containerfile

misc: add Containerfile #3

Workflow file for this run

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