From 629ca395cad0817393e93dc38247797996edd86c Mon Sep 17 00:00:00 2001 From: deeenes Date: Tue, 2 Jul 2024 17:44:20 +0200 Subject: [PATCH 1/2] `gh-actions/tests`: do not print env vars --- .github/workflows/test.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 6587db6..4f0f5c6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -61,10 +61,6 @@ jobs: - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: | - echo "Env variables:\n\r" - echo -e "$PATH\n\r" - echo -e "$CFLAGS\n\r" - echo -e "$LDFLAGS\n\r" poetry install --no-interaction --no-root - name: Install library run: poetry install --no-interaction From 526ecd33ecf03e3fdd378ffe51067d4e3aca534d Mon Sep 17 00:00:00 2001 From: deeenes Date: Tue, 2 Jul 2024 17:57:12 +0200 Subject: [PATCH 2/2] `gh-actions/tests`: updated `codecov` to use its new client --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4f0f5c6..50a0b72 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -77,4 +77,4 @@ jobs: env: CODECOV_NAME: ${{ matrix.python }}-${{ matrix.os }} run: | - poetry run codecovcli --no-color --required -F fast -t ${{ secrets.CODECOV_TOKEN }} + poetry run codecovcli --verbose upload-process -t ${{ secrets.CODECOV_TOKEN }} -n 'fast'-${{ github.run_id }} -F fast