diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dfa4b8f..0f137fa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,6 +11,7 @@ jobs: canary: uses: ./.github/workflows/pytest.yaml with: + codecov: false # Choose colcon-notification for a canary build. It has colcon # dependencies and debian patches, so exercieses a fair amount of the # CI action features. diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index e5119ca..5ffdf16 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -6,7 +6,7 @@ on: # yamllint disable-line rule:truthy inputs: codecov: description: 'run codecov action after testing' - default: false + default: true required: false type: boolean matrix-filter: @@ -61,9 +61,7 @@ jobs: repository: ${{ inputs.setup-repository }} path: ./.github-ci-action-repo - uses: ./.github-ci-action-repo - - uses: codecov/codecov-action@v3 - if: ${{ inputs.codecov }} - uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - if: ${{ env.CODECOV_TOKEN != '' }} + if: ${{ inputs.codecov }}