From 5a221cf8fe1fc8fd78ffa6589dcaec381762dcbf Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Thu, 4 Jan 2024 16:06:28 +0100 Subject: [PATCH] Provide a dummy task in CI for the whole suite This task depends on the matrix tests so we can set it as a required task, rather than listing the whole matrix individually. --- .github/workflows/ci.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2d36891f..80f0785c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,3 +47,10 @@ jobs: - name: Run tests run: | bundle exec rake test test:acceptance + + suite: + name: Test suite + needs: test + runs-on: ubuntu-latest + steps: + - run: echo Test suite completed