From 1bce7f786d1509f1aafd60949f699527d1ddf22d Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 25 Mar 2026 17:46:24 +0000 Subject: [PATCH] fix: pass secrets to test workflow so coverage upload runs The test job in ci.yml was missing `secrets: inherit`, so CODACY_PROJECT_TOKEN was never available and the coverage upload step's condition always evaluated to false. https://claude.ai/code/session_013sZvFxPLqJJzVpiRegohYm --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdc047e4..317c74cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,7 @@ jobs: uses: ./.github/workflows/test.yml permissions: contents: read + secrets: inherit docs: uses: ./.github/workflows/docs.yml