Skip to content

A github action for running the tests of the various THREDDS projects in the thredds-test-environment (https://github.com/Unidata/thredds-test-environment).

Notifications You must be signed in to change notification settings

Unidata/thredds-test-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 https://github.com/Unidata/thredds-test-environment.

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

uses: Unidata/thredds-test-action@v2
with:
  java-vendor: 'temurin'
  java-version: '11'
  build-tool: 'gradlew'
  test-command: 'clean testAll'