From e3e6c0d07dda58f06fe793e6bfd15514917fbb44 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Thu, 14 Nov 2024 21:55:58 +0100 Subject: [PATCH] CI: Apply Vox Pupuli best practices --- .github/workflows/tests.yaml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 3dfc129..38272d5 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -1,9 +1,13 @@ name: Tests + on: - - push - - pull_request + pull_request: {} + push: + branches: + - master + jobs: - full_tests: + test: strategy: fail-fast: false matrix: @@ -35,3 +39,11 @@ jobs: - env: PUPPET_VERSION: ${{ matrix.puppet }} run: bundle exec rake full_tests + + tests: + needs: + - test + runs-on: ubuntu-latest + name: Test suite + steps: + - run: echo Test suite completed