Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/queue_filing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ jobs:

- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: "3.12"

# The gate below (and Claude's own in-sandbox check) runs pytest; the
# bare runner doesn't ship it — its absence failed the first live run.
- name: Install the test runner
run: pip install pytest

- name: Stash the request for Claude
env:
# env, never inline interpolation — issue text is untrusted input.
Expand Down
Loading