From 18c8c3b303a13f46b822f247b9bd62b0105c4b6f Mon Sep 17 00:00:00 2001 From: Nikola Davidova Date: Fri, 29 May 2026 12:37:13 +0200 Subject: [PATCH] add distgen check to github workflow --- .github/workflows/container-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/container-tests.yml b/.github/workflows/container-tests.yml index 7be3ffb9..915f5e2a 100644 --- a/.github/workflows/container-tests.yml +++ b/.github/workflows/container-tests.yml @@ -4,10 +4,12 @@ on: - created jobs: + distgen-check: + uses: "sclorg/ci-actions/.github/workflows/distgen-check.yml@main" check-readme: uses: "sclorg/ci-actions/.github/workflows/check-readme.yml@main" container-tests: - needs: check-readme + needs: [check-readme, distgen-check] uses: "sclorg/ci-actions/.github/workflows/container-tests.yml@main" with: enabled-tests: '["container","container-pytest","openshift-pytest"]'