Skip to content

Commit ea28c92

Browse files
celinvaloli-obk
authored andcommitted
Add a job to check the demo
1 parent 6176e87 commit ea28c92

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/demo.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Run a job to ensure formatting is OK
2+
name: Run demo
3+
on:
4+
pull_request:
5+
paths:
6+
- demo/**
7+
8+
push:
9+
paths:
10+
- demo/**
11+
12+
jobs:
13+
check_demo:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
19+
- name: Run Demo
20+
run: ./demo/run_demo.sh

0 commit comments

Comments
 (0)