Skip to content

Commit 18f01bb

Browse files
dugshubclaude
andcommitted
fix: Install dev dependencies in GitHub Actions setup
The setup action was missing pytest, mypy, and other dev dependencies needed for CI checks. Now installs all required tools for testing. 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 9ede425 commit 18f01bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pattern-stack/setup/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ runs:
2121
- name: Install dependencies
2222
shell: bash
2323
run: |
24-
uv sync --frozen
24+
uv sync --frozen --all-extras
25+
uv pip install mypy pytest pytest-asyncio pytest-cov black ruff
2526
echo "✅ Pattern Stack environment ready (Python ${{ inputs.python-version }})"

0 commit comments

Comments
 (0)