From 3127b69bfb8c2a17d8a994ac8c65271cf9864e89 Mon Sep 17 00:00:00 2001 From: cte Date: Wed, 14 May 2025 22:09:36 -0700 Subject: [PATCH] Add `check` job --- .github/workflows/CI.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4784af22c7..9d42706c6e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -97,3 +97,10 @@ jobs: # name: test-results # path: test-results/ # retention-days: 7 + + check: + needs: [build, test] + runs-on: ubuntu-latest + steps: + - name: NO-OP + run: echo "All checks passed."