Skip to content

Commit

Permalink
Merge pull request #40 from codecov/Ajay/update-split-var-inputs
Browse files Browse the repository at this point in the history
fix: update split / group var inputs
  • Loading branch information
ajay-sentry authored Feb 13, 2025
2 parents dc48c20 + ef5e48b commit 285163a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/run-tests-split.yml
Original file line number Diff line number Diff line change
@@ -10,6 +10,10 @@ on:
repo:
type: string
required: true
split:
type: number
required: false
default: 5
env:
AR_REPO: ${{ inputs.repo }}

@@ -50,11 +54,11 @@ jobs:
make test_env.check_db
- name: Run unit tests
run: |
make test_env.run_unit --group ${{ matrix.group }}
make test_env.run_unit GROUP=${{ matrix.group }} SPLIT=${{ inputs.split }}
- name: Run integration tests
if: inputs.run_integration == true
run: |
make test_env.run_integration --group ${{ matrix.group }}
make test_env.run_integration GROUP=${{ matrix.group }} SPLIT=${{ inputs.split }}
## Don't upload on forks for now.
- name: upload using codecovcli
if: ${{ !cancelled() && !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}

0 comments on commit 285163a

Please sign in to comment.