Skip to content

Commit c577bd0

Browse files
noahgiftclaude
andcommitted
Fix GitHub Actions example test by using correct feature name and arguments
- Change --features="all" to --features="full" as "all" feature doesn't exist - Add required command line arguments to todo_generation example test - Use proper test data for CI environment (project name, requirements, etc.) - This should resolve the "package 'pdmt' does not contain this feature: all" error 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 87d55f2 commit c577bd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108

109109
- name: Test examples
110110
run: |
111-
cargo run --example todo_generation --features="all"
111+
cargo run --example todo_generation --features="full" -- --project "CI Test Project" --requirement "Test requirement 1" --requirement "Test requirement 2" --granularity high --max-todos 5 --format yaml
112112
113113
- name: Generate coverage report (Ubuntu stable only)
114114
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'

0 commit comments

Comments
 (0)