We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6a3e11 commit c7a10bcCopy full SHA for c7a10bc
1 file changed
.github/workflows/test.yml
@@ -7,6 +7,12 @@ on:
7
- "dev"
8
pull_request:
9
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
16
17
concurrency:
18
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -65,4 +71,4 @@ jobs:
65
71
- name: Cargo nexttest
66
72
shell: bash
67
73
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