From: Benjamin Drung Date: Mon, 15 Dec 2025 10:37:23 +0000 (+0100) Subject: ci: split install dependencies step from test run step X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=864c1951e3b520ef7c8b36c3480cf256fdaeb43b;p=thirdparty%2Fdracut-ng.git ci: split install dependencies step from test run step To ease looking at the test results, split the step that installs the dependencies step from the step that runs the actual test (in this case `make syncheck`). --- diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index dd7039180..4f2962fe2 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -59,10 +59,9 @@ jobs: steps: - name: "Checkout Repository" uses: actions/checkout@v6 - - run: | - apt-get update - apt-get -y install shellcheck shfmt make - make syncheck + - name: Install dependencies + run: apt-get update && apt-get -y install make shellcheck shfmt + - run: make syncheck extended: needs: basic