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: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ We recommend that you run Parasoft dotTEST on a self-hosted rather than GitHub-h
31
31
32
32
Add the `Run Parasoft dotTEST` action to your workflow to launch code analysis with Parasoft dotTEST.
33
33
34
-
The following example shows a simple workflow made up of one job "Run code analysis with dotTEST". The example assumes that dotTEST is run on a self-hosted runner and the path to dottestcli.exe is available on PATH.
34
+
The following example shows a simple workflow made up of one job "run-dottest-action". The example assumes that dotTEST is run on a self-hosted runner and the path to dottestcli.exe is available on PATH.
35
35
36
36
```yaml
37
37
# This is a basic workflow to help you get started with the Run Parasoft dotTEST action.
@@ -51,8 +51,10 @@ on:
51
51
52
52
# A workflow run is made up of one or more jobs that can run sequentially or in parallel.
53
53
jobs:
54
-
# Specifies the name of the job.
55
-
Run code analysis with dotTEST:
54
+
# This workflow is made up of one job "run-dottest-action".
55
+
run-dottest-action:
56
+
# Specifies the name of the job.
57
+
name: Run code analysis with dotTEST
56
58
# Specifies required permissions for upload-sarif action
57
59
permissions:
58
60
# required for all workflows
@@ -268,7 +270,7 @@ If a pull request is blocked due to failed checks, the administrator can still m
268
270
The following inputs are available for this action:
269
271
| Input | Description |
270
272
| --- | --- |
271
-
| `testConfig` | Specifies the URL of the test configuration to be used for analysis. The default is `builtin://Recommended .NET Core Rules`.|
273
+
| `testConfig` | Specifies the URL of the test configuration to be used for analysis. The default is `builtin://Recommended .NET Rules`.|
272
274
| `exclude` | Specifies the file system paths to files to exclude from analysis. Supports ANT-style wildcards.|
273
275
| `fail` | Fails the command with exit code 2 if any findings are reported.|
274
276
| `installDir` | Specifies the path to the dotTEST installation directory, which contains dottestcli.exe.|
Copy file name to clipboardExpand all lines: action.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ inputs:
25
25
testConfig:
26
26
description: 'URL of the test configuration to be used for analysis.'
27
27
required: false
28
-
default: 'builtin://Recommended .NET Core Rules'
28
+
default: 'builtin://Recommended .NET Rules'
29
29
resource:
30
30
description: 'Solution-relative path to a project in a solution, a directory of files in a project, or a file. Use a semicolon-separated list to specify multiple paths.'
0 commit comments