From 8bf72d1ec62fdd68cef9b49c1d5f613f94369baa Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Wed, 20 Sep 2023 16:33:35 +0200 Subject: [PATCH] GHA: Add Dummy job we can depend on for reviews (#183) --- .github/workflows/ci.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9048bf41..016319ce 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -80,3 +80,12 @@ jobs: # uses: github/codeql-action/upload-sarif@v2 # with: # sarif_file: 'trivy-results.sarif' + tests: + needs: + - shellcheck + - rubocop + - unit_tests + runs-on: ubuntu-latest + name: Test suite + steps: + - run: echo Test suite completed