Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
arrow-up

GitHub Action

Apache JMeter

v0.1.0

Apache JMeter

arrow-up

Apache JMeter

Runs an Apache JMeter test case

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Apache JMeter

uses: rbhadti94/[email protected]

Learn more about this action in rbhadti94/apache-jmeter-action

Choose a version

Apache JMeter Github Action

This action runs a JMeter performance test using a given JMX test file. It will output a log file and a results file.

Inputs

testFilePath

Required: The path to the JMX test file to run with JMeter

outputLogFilePath

Not Required: The output file which will hold the JMeter log after the test run.

Default: jmeter_output.log

outputResultsPath

Not Required: The output file which will hold the JMeter results after the test run.

Default: jmeter_results.log

Example usage

- name: Run JMeter Tests
  uses: rbhadti94/[email protected]
  with:
    testFilePath: tests/sample_test.jmx
    outputLogFilePath: my_jmeter_log.log
    outputResultsPath: my_results.log