You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CI: pin jobs to bash so heredocs run on Windows
The skill-check step uses a heredoc (python - <<'PY'), which is bash
syntax. Windows runners default to PowerShell, which stops at the
redirection operator — so every CI run on windows-latest has failed since
that step landed. Bash ships on all GitHub runners, Windows included, so
the fix is a job-level shell default rather than rewriting the steps.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>