Skip to content

Commit b2844b9

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

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
@@ -53,5 +53,7 @@ jobs:
5353
run: |
5454
cd examples
5555
for file in *.py; do
56-
python3 $file
56+
echo "Run example ${file}"
57+
COHERENCE_CLIENT_REQUEST_TIMEOUT=180.0 python3 $file
58+
echo "==== Done running example ${file} ======"
5759
done

0 commit comments

Comments
 (0)