Skip to content

Commit c7a10bc

Browse files
committed
add manual dispatch to check ci exit code 143
1 parent b6a3e11 commit c7a10bc

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ on:
77
- "dev"
88
pull_request:
99
types: [opened, synchronize, reopened, ready_for_review]
10+
workflow_dispatch:
11+
inputs:
12+
build_jobs:
13+
type: number
14+
description: 'Number of build jobs to use in test.'
15+
required: false
1016

1117
concurrency:
1218
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -65,4 +71,4 @@ jobs:
6571
- name: Cargo nexttest
6672
shell: bash
6773
run: |
68-
cargo nextest run -j 1
74+
cargo nextest run ${{ inputs.build_jobs && format('--build-jobs {0}', inputs.build_jobs) || '' }} -j 1

0 commit comments

Comments
 (0)