Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 901 Bytes

README.md

File metadata and controls

54 lines (35 loc) · 901 Bytes

Setup Gauge

This github action allows for installation of the Gauge CLI to be used in your actions pipeline.

It has support for Linux, MacOS and Windows runners.

Inputs

gauge-version

Required The version needs to be installed.

Default: latest.

gauge-plugins

Required The plugins needs to be installed.

Default: Nothing

Example usage

Install latest

uses: getgauge/setup-gauge@master

Install a particular version

uses: getgauge/setup-gauge@master
with:
    gauge-version: '1.0.7'

Install plugins with gauge

uses: getgauge/setup-gauge@master
with:
    gauge-version: '1.0.7'
    gauge-plugins: java, html-report

Install gauge from source

uses: getgauge/setup-gauge@master
with:
    gauge-version: master
    gauge-plugins: java, html-report