We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43cb289 commit 468a506Copy full SHA for 468a506
1 file changed
.github/workflows/publish.yml
@@ -12,6 +12,11 @@ on:
12
required: false
13
default: false
14
type: boolean
15
+ skip_units:
16
+ description: Skip unit test jobs
17
+ required: false
18
+ default: false
19
+ type: boolean
20
workflow_call:
21
inputs:
22
image_tag:
@@ -23,6 +28,11 @@ on:
23
28
24
29
25
30
31
32
33
34
35
26
36
secrets:
27
37
DOCKERHUB_USERNAME:
38
@@ -73,7 +83,7 @@ jobs:
73
83
uses: ./.github/workflows/typecheck.yml
74
84
75
85
units:
76
- if: ${{ !inputs.typecheck_only }}
86
+ if: ${{ !inputs.typecheck_only && !inputs.skip_units }}
77
87
uses: ./.github/workflows/unit-tests.yml
78
88
79
89
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
0 commit comments