From 1f607d922f332674c1cc426f4d43ed25c133b9e4 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 25 Jun 2026 14:50:25 +0200 Subject: [PATCH] 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 --- .github/workflows/test-packaging.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-packaging.yaml b/.github/workflows/test-packaging.yaml index 98d2299..55d5210 100644 --- a/.github/workflows/test-packaging.yaml +++ b/.github/workflows/test-packaging.yaml @@ -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: |