Move book to the book/
folder and add content
#4
This file contains 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 formatting is OK | |
name: Run demo | |
on: | |
pull_request: | |
paths: | |
- demo/** | |
push: | |
paths: | |
- demo/** | |
jobs: | |
check_demo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run Demo | |
run: ./demo/run_demo.sh |