]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci: split install dependencies step from test run step
authorBenjamin Drung <benjamin.drung@canonical.com>
Mon, 15 Dec 2025 10:37:23 +0000 (11:37 +0100)
committerLaszlo <laszlo.gombos@gmail.com>
Tue, 16 Dec 2025 00:59:51 +0000 (19:59 -0500)
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`).

.github/workflows/integration.yml

index dd7039180674dc034c4a311e908009c960e74e49..4f2962fe2383e3b64b363bf12f58e43afc3ea2f8 100644 (file)
@@ -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