The original `go.yml` got added via some GH automation. But we are not MSDOS and we can affort more than 3 chars for a file extension - so this commit renames all .yml to .yaml which is what we use everywhere else.
24 lines
488 B
YAML
24 lines
488 B
YAML
name: Integration tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
uses: ./.github/workflows/testdeps.yaml
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install integration test env
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install -y pytest golang
|
|
|
|
- name: Run integration tests via pytest
|
|
run: |
|
|
# use "-s" for now for easier debugging
|
|
sudo pytest -s -v
|