From 2a20fe6fa297657f5c52799c49d696254b707dd9 Mon Sep 17 00:00:00 2001 From: Moritz Schubotz Date: Wed, 25 Feb 2026 17:33:43 +0100 Subject: [PATCH] Update GitHub Actions for code coverage Added id-token permission and coverage action. files need to tested --- .github/workflows/python-app.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index c7cdf5a..8d15750 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -11,6 +11,7 @@ on: permissions: contents: read + id-token: write # IMPORTANT for code coverage action env: OAI_BASIC_PASSWORD: ${{ secrets.OAI_BASIC_PASSWORD }} @@ -39,3 +40,7 @@ jobs: run: | coverage run -m pytest coverage report -m + - uses: qltysh/qlty-action/coverage@v2 + with: + oidc: true + files: coverage/lcov.info