CI: target the shell runner label instead of docker
Some checks failed
Build and Test / build-and-test (push) Failing after 36s
Some checks failed
Build and Test / build-and-test (push) Failing after 36s
The only registered act_runner advertises the `shell` label, not `docker`, so `runs-on: docker` left the job queued forever. The host has the docker CLI (the resume repo builds via `docker run` on this same runner), so keep running the build/test inside a golang container. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
15335a9f4c
commit
5bf03feb94
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ name: Build and Test
|
|||
on: [push]
|
||||
jobs:
|
||||
build-and-test:
|
||||
runs-on: docker
|
||||
runs-on: shell
|
||||
steps:
|
||||
- name: Checkout
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue