Skip to content

Commit

Permalink
Merge pull request #46 from codecov/matt/cc-action-submodules
Browse files Browse the repository at this point in the history
use recurse_submodules cc action arg + remove working_directory cc action arg
  • Loading branch information
matt-codecov authored Feb 27, 2025
2 parents 0fc24d2 + 2669a00 commit 7e4ab15
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests-split.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7e4ab15

Please sign in to comment.