Skip to content

Commit 468a506

Browse files
committed
chore(ci): add a focused builder benchmark
1 parent 43cb289 commit 468a506

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ on:
1212
required: false
1313
default: false
1414
type: boolean
15+
skip_units:
16+
description: Skip unit test jobs
17+
required: false
18+
default: false
19+
type: boolean
1520
workflow_call:
1621
inputs:
1722
image_tag:
@@ -23,6 +28,11 @@ on:
2328
required: false
2429
default: false
2530
type: boolean
31+
skip_units:
32+
description: Skip unit test jobs
33+
required: false
34+
default: false
35+
type: boolean
2636
secrets:
2737
DOCKERHUB_USERNAME:
2838
required: false
@@ -73,7 +83,7 @@ jobs:
7383
uses: ./.github/workflows/typecheck.yml
7484

7585
units:
76-
if: ${{ !inputs.typecheck_only }}
86+
if: ${{ !inputs.typecheck_only && !inputs.skip_units }}
7787
uses: ./.github/workflows/unit-tests.yml
7888
secrets:
7989
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}

0 commit comments

Comments
 (0)