We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dedba1 commit 09cd663Copy full SHA for 09cd663
1 file changed
.github/workflows/tests.yml
@@ -95,14 +95,13 @@ jobs:
95
96
- name: Validate example structure
97
run: |
98
- # Check that each module has exactly 5 examples
99
- for module in examples/module*/; do
100
- count=$(find "$module" -maxdepth 1 -name "*.py" | wc -l)
101
- if [ "$count" -ne 5 ]; then
102
- echo "Error: $module should have exactly 5 Python examples, found $count"
103
- exit 1
104
- fi
105
- done
+ # Check that we have the expected total number of examples (45)
+ total_examples=$(find examples/module*/ -maxdepth 1 -name "*.py" | wc -l)
+ if [ "$total_examples" -ne 45 ]; then
+ echo "Error: Expected 45 total examples, found $total_examples"
+ exit 1
+ fi
+ echo "✅ Found $total_examples examples across 8 modules"
106
107
- name: Check for placeholder content
108
0 commit comments