Anirudh Balaraman commited on
Commit
33813a8
·
unverified ·
1 Parent(s): ad6e7f1

Update CI workflow to trigger on Python file changes

Browse files
Files changed (1) hide show
  1. .github/workflows/ci.yaml +4 -2
.github/workflows/ci.yaml CHANGED
@@ -1,7 +1,9 @@
1
  name: CI
2
 
3
  on:
4
- push
 
 
5
 
6
  jobs:
7
  quality-assurance:
@@ -22,4 +24,4 @@ jobs:
22
  pip install -r requirements.txt
23
 
24
  - name: Run CI Suite
25
- run: make check
 
1
  name: CI
2
 
3
  on:
4
+ push:
5
+ paths:
6
+ - '**/*.py'
7
 
8
  jobs:
9
  quality-assurance:
 
24
  pip install -r requirements.txt
25
 
26
  - name: Run CI Suite
27
+ run: make check