diff --git a/.circleci/config.yml b/.circleci/config.yml index fe5ae248..13271cce 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: 2.1 orbs: - codecov: codecov/codecov@4 + codecov: codecov/codecov@5 jobs: build: @@ -15,7 +15,10 @@ jobs: name: Run tests and collect coverage command: pytest --cov app - codecov/upload - + - codecov/upload: + flags: testthree + - codecov/upload: + flags: test-four workflow: version: 2.1 build-test: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15abf468..d584e476 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,3 +40,17 @@ jobs: fail_ci_if_error: true use_oidc: true verbose: true + - name: Upload coverage to Codecov (oidc) + uses: codecov/codecov-action@main + with: + fail_ci_if_error: true + use_oidc: true + flags: testone + verbose: true + - name: Upload coverage to Codecov (oidc) + uses: codecov/codecov-action@main + with: + fail_ci_if_error: true + use_oidc: true + flags: test-two + verbose: true