diff --git a/.github/workflows/ci-pull-requests.yml b/.github/workflows/ci-pull-requests.yml index 1bdd6c60b96ee..70a0d1b56ec73 100644 --- a/.github/workflows/ci-pull-requests.yml +++ b/.github/workflows/ci-pull-requests.yml @@ -40,11 +40,12 @@ jobs: with: ref: refs/pull/${{ github.event.pull_request.number }}/merge cacheKey: ${{ github.sha }}-base:build - - lint: - name: Lint - uses: ./.github/workflows/linting-reusable.yml - needs: install-and-build - with: - ref: refs/pull/${{ github.event.pull_request.number }}/merge - cacheKey: ${{ github.sha }}-base:build + collectCoverage: true + + # lint: + # name: Lint + # uses: ./.github/workflows/linting-reusable.yml + # needs: install-and-build + # with: + # ref: refs/pull/${{ github.event.pull_request.number }}/merge + # cacheKey: ${{ github.sha }}-base:build diff --git a/.github/workflows/units-tests-reusable.yml b/.github/workflows/units-tests-reusable.yml index 7373759067de1..c5e53240677b4 100644 --- a/.github/workflows/units-tests-reusable.yml +++ b/.github/workflows/units-tests-reusable.yml @@ -22,6 +22,10 @@ on: required: false default: false type: boolean + secrets: + CODECOV_TOKEN: + description: 'Codecov upload token.' + required: true jobs: unit-test: @@ -69,4 +73,5 @@ jobs: if: inputs.collectCoverage uses: codecov/codecov-action@v4.5.0 with: + verbose: true token: ${{ secrets.CODECOV_TOKEN }}