From 122e79f60abee60970baa868dfe5334bfa28118f Mon Sep 17 00:00:00 2001 From: Thomas Lavocat Date: Wed, 4 Sep 2024 15:58:39 +0200 Subject: [PATCH] [#894] tutorial tester: run on schedule Run on the weekly schedule the tutorials to make sure they are still working fine. --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4bb2dd08..2647bedb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,11 @@ on: required: false default: false type: boolean + skipTutorials: + description: 'Skip Tutorials' + required: false + default: false + type: boolean jobs: @@ -79,6 +84,10 @@ jobs: if: ${{ github.event_name != 'workflow_dispatch' || !inputs.skipDOTests }} run: make test-mk-do-v + - name: Run the tutorials + if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' && !inputs.skipTutorials }} + run: go run test/utils/tutorials/tester.go + - name: Set up Node.js uses: actions/setup-node@v4 with: