Skip to content

Commit 9300c42

Browse files
committed
COH-32107 - Create a GitHub workflow action for running Python examples
1 parent d39f3f0 commit 9300c42

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/run-examples.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,6 @@ jobs:
5252
shell: bash
5353
run: |
5454
cd examples
55-
python3 basics.py
55+
for file in *.py; do
56+
python3 $file
57+
done

0 commit comments

Comments
 (0)