@@ -29,18 +29,18 @@ jobs:
29
29
30
30
## Inputs
31
31
32
- | Name | Description | Required | Default |
33
- | ------------------- | ----------------------------------------------------------------- | -------- | ------- |
34
- | token | Token used for pushing fixes and commenting on PRs. | true | |
35
- | run-tests | Whether tests should be run. | false | true |
36
- | run-analysis | Whether static analysis should be run. | false | true |
37
- | run-coverage | Whether code coverage should be run. | false | true |
38
- | run-prev-coverage | Whether code coverage should be compared with the base branch. | false | true |
39
- | run-behind-by | Whether action should check if HEAD branch is behind base branch. | false | true |
40
- | create-comment | Whether the action should comment the output status. | false | true |
41
- | working-directory | Working directory to run the action in | false | "." |
42
- | coverage-pass-score | Coverage passing percentage | false | "90" |
43
- | test-command | Command used to run test suite. | false | "" |
32
+ | Name | Description | Required | Default |
33
+ | ------------------- | ---------------------------------------------------------------------------------------------- | -------- | ------- |
34
+ | token | Token used for pushing fixes and commenting on PRs. | true | |
35
+ | run-tests | Whether tests should be run. | false | true |
36
+ | run-analysis | Whether static analysis should be run. | false | true |
37
+ | run-coverage | Whether code coverage should be run. | false | true |
38
+ | run-prev-coverage | Whether code coverage should be compared with the base branch - run-coverage must also be true | false | true |
39
+ | run-behind-by | Whether action should check if HEAD branch is behind base branch. | false | true |
40
+ | create-comment | Whether the action should comment the output status. | false | true |
41
+ | working-directory | Working directory to run the action in | false | "." |
42
+ | coverage-pass-score | Coverage passing percentage | false | "90" |
43
+ | test-command | Command used to run test suite. | false | "" |
44
44
45
45
By default, the ` test-command` input is empty, and the action uses the following command to run tests and generate coverage:
46
46
0 commit comments