Fix the demo #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run a job to ensure that we can run the demo successfully. | |
name: Run demo | |
on: | |
pull_request: | |
paths: | |
- demo/** | |
push: | |
paths: | |
- demo/** | |
jobs: | |
check_demo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Demo | |
run: ./demo/run_demo.sh |