test-packaging.yaml: Add in-tree integration tests

Add a post-build step which runs integration tests against the source
code repository (as opposed to against the installed package).

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-06-25 14:50:25 +02:00
commit 1f607d922f
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61

View file

@ -66,6 +66,12 @@ jobs:
set -euxo pipefail
make -C "${{ github.event.repository.name }}" check
- name: Run post-build integration tests against repo
shell: bash
run: |
set -euxo pipefail
make -C "${{ github.event.repository.name }}" test
- name: Install package
shell: bash
run: |