Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update split / group var inputs #40

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/run-tests-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
repo:
type: string
required: true
split:
type: number
required: false
default: 5
env:
AR_REPO: ${{ inputs.repo }}

Expand Down Expand Up @@ -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' }}
Expand Down
Loading