Skip to content

Commit

Permalink
[#894] tutorial tester: run on schedule
Browse files Browse the repository at this point in the history
Run on the weekly schedule the tutorials to make sure they are still
working fine.
  • Loading branch information
lavocatt authored and brusdev committed Sep 4, 2024
1 parent 6ae91ca commit 122e79f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ on:
required: false
default: false
type: boolean
skipTutorials:
description: 'Skip Tutorials'
required: false
default: false
type: boolean

jobs:

Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 122e79f

Please sign in to comment.