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 https://github.com/Unidata/thredds-test-environment.
- Required: Vendor of java to use when running the tests (temurin or zulu)
- Required: Version of java to use when running the tests (choose from valid versions in thredds-test-environment)
- Required: Name of build tool used to run the tests (gradlew or mvn)
- Required: Command used in conjunction with the build tool to run the tests.
uses: Unidata/thredds-test-action@v2
with:
java-vendor: 'temurin'
java-version: '11'
build-tool: 'gradlew'
test-command: 'clean testAll'