From 6f5cad0ad2ee294bd82a2db2da781780cb04e8b2 Mon Sep 17 00:00:00 2001 From: Roberto Rossini <71787608+robomics@users.noreply.github.com> Date: Mon, 13 Jan 2025 18:26:26 +0100 Subject: [PATCH] Bugfix --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d871be..f0ca448 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -129,7 +129,7 @@ jobs: -m unit - name: Upload unit test coverage report to Codecov - if: matrix.minimal_install == 'true' + if: (! matrix.minimal_install) uses: codecov/codecov-action@v5 with: flags: "tests | unit | python-${{ matrix.python_version }}" @@ -140,7 +140,7 @@ jobs: verbose: true - name: Upload unit test coverage report to Codecov (core) - if: matrix.minimal_install != 'true' + if: matrix.minimal_install uses: codecov/codecov-action@v5 with: flags: "tests | unit | python-${{ matrix.python_version }} | core" @@ -162,7 +162,7 @@ jobs: -m end2end - name: Upload end2end test coverage report to Codecov - if: matrix.minimal_install == 'true' + if: (! matrix.minimal_install) uses: codecov/codecov-action@v5 with: flags: "tests | integration | python-${{ matrix.python_version }}" @@ -173,7 +173,7 @@ jobs: verbose: true - name: Upload end2end test coverage report to Codecov (core) - if: matrix.minimal_install != 'true' + if: matrix.minimal_install uses: codecov/codecov-action@v5 with: flags: "tests | integration | python-${{ matrix.python_version }} | core"