actions-marketplace-validations/run .travis.yml
Run `.travis.yml` build job Steps/Stages (Travis-CI) as Github Action (Github).
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| file | Path to `.travis.yml` file. Leave empty / unset for default `.travis.yml`. Relative to project root. Overrides the `TRAVIS_YAML_FILE` environment variable if non-empty. | no | "" |
| steps | Space separated list of steps to run. Leave empty / unset to run all custom steps. | yes | "" |
| stages | Deprecated: Space separated list of steps to run (originally misnamed stages). Leave empty / unset to run all custom steps. Use `inputs.steps` instead. Note: `input.stages` might be re-used for different or just error in a future version; change early. | yes | "" |
| allow-failure | Allow the .travis.yml build to fail. Possible values are `true` and `false`. Overrides the `TRAVIS_ALLOW_FAILURE` environment variable if set. | no | "" |
| allow_failure | alias of `allow-failure` | no | "" |
| run-job | Name of the run-job. Possible values are the ones the plan is listing. By default, the original root step-scripts are in use. If a job has a name, it can be used as well. | no | "" |
| run_job | alias of `run-job` | no | "" |
| dry-run-job | Dry-run the run-job. Possible values are `true` and `false`. | no | "" |
| dry_run_job | alias of `dry-run-job` | no | "" |
Outputs
| name | description |
|---|---|
| test-result | Outcome of `TRAVIS_TEST_RESULT`, either `0` if all commands in the `script` section have exited with zero or `1` otherwise. |
| test_result | alias of `test-result` |
| conclusion | The result of the .travis.yml build after `allow_failure` / `TRAVIS_ALLOW_FAILURE` is applied. Possible values are `success` or `failure`. |
| outcome | The result of the .travis.yml build before `allow_failure` / `TRAVIS_ALLOW_FAILURE` is applied. Possible values are `success` or `failure`. |