You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/test-packages.yml
+32-3Lines changed: 32 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,21 +13,41 @@ on:
13
13
description: "The project name to run the test."
14
14
required: false
15
15
type: string
16
+
16
17
os:
17
-
description: "The OS label which run the test on. (ex: ubuntu-latest, windows-latest, macos-latest)"
18
+
description: "The OS label which run the test on. (ex: ubuntu-22.04, ubuntu-20.04, windows-latest, macos-latest)"
18
19
required: false
19
20
type: string
21
+
20
22
verbose:
21
23
description: "If true, enables verbose output."
22
24
required: false
23
25
type: boolean
24
26
default: false
25
27
28
+
dotnet_test_options_verbosity_level:
29
+
description: "The argument to be set to the `--verbosity <LEVEL>` option of the `dotnet test` command. <LEVEL> := q[uiet], m[inimal], n[ormal], d[etailed], diag[nostic]"
30
+
required: false
31
+
type: string
32
+
33
+
dotnet_test_options_framework:
34
+
description: "The argument to be set to the `--framework <FRAMEWORK>` option of the `dotnet test` command."
35
+
required: false
36
+
type: string
37
+
38
+
dotnet_test_options_filter_expression:
39
+
description: "The argument to be set to the `--filter <EXPRESSION>` option of the `dotnet test` command."
Copy file name to clipboardExpand all lines: .github/workflows/test.yml
+27-1Lines changed: 27 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,16 +26,38 @@ on:
26
26
description: "The project name to run the test."
27
27
required: false
28
28
type: string
29
+
29
30
os:
30
31
description: "The OS label which run the test on. (ex: ubuntu-22.04, ubuntu-20.04, windows-latest, macos-latest)"
31
32
required: false
32
33
type: string
34
+
33
35
verbose:
34
36
description: "If true, enables verbose output."
35
37
required: false
36
38
type: boolean
37
39
default: false
38
40
41
+
extra_options_common:
42
+
description: "The common extra options to be set on running the `dotnet restore/build/test` command."
43
+
required: false
44
+
type: string
45
+
46
+
dotnet_test_options_verbosity_level:
47
+
description: "The argument to be set to the `--verbosity <LEVEL>` option of the `dotnet test` command. <LEVEL> := q[uiet], m[inimal], n[ormal], d[etailed], diag[nostic]"
48
+
required: false
49
+
type: string
50
+
51
+
dotnet_test_options_framework:
52
+
description: "The argument to be set to the `--framework <FRAMEWORK>` option of the `dotnet test` command."
53
+
required: false
54
+
type: string
55
+
56
+
dotnet_test_options_filter_expression:
57
+
description: "The argument to be set to the `--filter <EXPRESSION>` option of the `dotnet test` command."
0 commit comments