An open API service indexing awesome lists of open source software.

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).

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'
~~~