Spaces:
Sleeping
Sleeping
Anirudh Balaraman commited on
Update CI workflow to trigger on Python file changes
Browse files
.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
|