From 812f45b3845e08c61bc949f336d2a3f500a7891a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20Sch=C3=B6lzel?= Date: Tue, 1 Oct 2024 12:45:26 +0200 Subject: [PATCH] moves codecov token variable to correct step --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bdc6637..f5715af 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,8 +19,8 @@ jobs: python-version: ${{ matrix.python }} - run: pip install ".${{ matrix.extras }}" - run: pip install codecov . - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - run: coverage run -m unittest nolds.test_measures - run: codecov + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} if: ${{ matrix.python == '3.10' && matrix.extras != '' }}