From 8713946f3564646a1a5c0745d77af1e7de484012 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Mon, 29 Apr 2024 11:48:29 +0200 Subject: [PATCH] fix(ci): codecov --- .github/workflows/continuous_integration.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 9fd2a402..36a098ba 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -43,9 +43,12 @@ jobs: - name: Build testing environment run: make build build-tests - name: Run tests - run: | - make tests-once - bash <(curl -s https://codecov.io/bash) + run: make tests-once + - name: Upload to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + verbose: true multiarch_build: if: github.event_name == 'push' && github.ref == 'refs/heads/main'