fix(ci): use docker label for runs-on to match Forgejo runner
Some checks failed
Lint and Build / lint (push) Failing after 1m47s
Lint and Build / build (push) Failing after 0s
Lint and Build / docker-build (push) Failing after 0s

This commit is contained in:
goose 2026-03-13 10:06:23 -03:00
parent 618151075b
commit 55c5d022a7

View file

@ -6,7 +6,7 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
@ -15,7 +15,7 @@ jobs:
run: cargo clippy --all-targets --all-features
build:
runs-on: ubuntu-latest
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
@ -24,7 +24,7 @@ jobs:
run: cargo build --release
docker-build:
runs-on: ubuntu-latest
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4