https://github.com/unidata/thredds-test-action
A github action for running the tests of the various THREDDS projects in the thredds-test-environment (https://github.com/Unidata/thredds-test-environment).
https://github.com/unidata/thredds-test-action
github-actions github-actions-docker
Last synced: 3 months ago
JSON representation
A github action for running the tests of the various THREDDS projects in the thredds-test-environment (https://github.com/Unidata/thredds-test-environment).
- Host: GitHub
- URL: https://github.com/unidata/thredds-test-action
- Owner: Unidata
- Created: 2021-04-15T13:54:16.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-30T23:06:32.000Z (over 2 years ago)
- Last Synced: 2024-05-09T15:42:32.036Z (about 1 year ago)
- Topics: github-actions, github-actions-docker
- Language: Dockerfile
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# THREDDS Test action
This action is used to run the tests of the various THREDDS projects in an environment that matches our Jenkins server instance.
More information on that environment can be found at .## Inputs
### java-vendor
* **Required**: Vendor of java to use when running the tests (temurin or zulu)
### java-version
* **Required**: Version of java to use when running the tests (choose from valid versions in thredds-test-environment)
### build-tool
* **Required**: Name of build tool used to run the tests (gradlew or mvn)
### test-command
* **Required**: Command used in conjunction with the build tool to run the tests.
## Example usage
~~~yml
uses: Unidata/thredds-test-action@v3
with:
java-vendor: 'temurin'
java-version: '11'
build-tool: 'gradlew'
test-command: 'clean testAll'
~~~