diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 00822752c..c352cc4d6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,6 +13,7 @@ on: jobs: test: uses: ./.github/workflows/pytest.yml + secrets: inherit docker: name: build and deploy docker images diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 71ba69f19..3b9291fb8 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -15,6 +15,7 @@ on: jobs: test: uses: ./.github/workflows/pytest.yml + secrets: inherit build: name: build and deploy test images diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 2c4129287..3a549ffe1 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -70,5 +70,11 @@ jobs: mv ./tests/.coverage.* ./ pip install -U coveralls coverage combine + coverage xml coverage report coveralls --service=github + + - name: Upload results to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }}