diff --git a/.github/workflows/run-tests-split.yml b/.github/workflows/run-tests-split.yml index 701e569..f90d835 100644 --- a/.github/workflows/run-tests-split.yml +++ b/.github/workflows/run-tests-split.yml @@ -161,7 +161,7 @@ jobs: use_pypi: true token: ${{ secrets[matrix.codecov_token_secret] }} url: ${{ secrets[matrix.codecov_url_secret] }} - working-directory: ${{ inputs.working_directory }} + recurse_submodules: true - name: Uploading integration test coverage (${{ matrix.name }}) if: ${{ inputs.run_integration == true }} @@ -175,7 +175,7 @@ jobs: use_pypi: true token: ${{ secrets[matrix.codecov_token_secret] }} url: ${{ secrets[matrix.codecov_url_secret] }} - working-directory: ${{ inputs.working_directory }} + recurse_submodules: true # The test result action doesn't accept globs in its `files` argument # so this step expands the globs into a comma-separated list of files diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7e3a5f9..b693f04 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -134,7 +134,7 @@ jobs: use_pypi: true token: ${{ secrets[matrix.codecov_token_secret] }} url: ${{ secrets[matrix.codecov_url_secret] }} - working-directory: ${{ inputs.working_directory }} + recurse_submodules: true - name: Uploading integration test coverage (${{ matrix.name }}) if: ${{ inputs.run_integration == true }} @@ -148,7 +148,7 @@ jobs: use_pypi: true token: ${{ secrets[matrix.codecov_token_secret] }} url: ${{ secrets[matrix.codecov_url_secret] }} - working-directory: ${{ inputs.working_directory }} + recurse_submodules: true - name: Uploading unit test results (${{ matrix.name }}) uses: codecov/test-results-action@v1