From 292f105fae27fe5b35f60d9594073bf6adcbdd30 Mon Sep 17 00:00:00 2001 From: Luca Rossi Date: Wed, 25 Feb 2026 18:36:24 +0100 Subject: [PATCH] fix: use self-hosted runner for CI test job to avoid billing costs (#67) The CI test job was running on macos-latest (GitHub-hosted), costing ~$0.08/min. With 65+ PRs in 2 days this burned the monthly budget. Switch to self-hosted (Mac mini) which the release workflow already uses successfully with the same toolchain. Co-authored-by: Claude Opus 4.6 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87be75c1..cb50111c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: jobs: test: name: Tests & Quality Checks - runs-on: macos-latest + runs-on: self-hosted steps: - uses: actions/checkout@v4