Go to file
rbhadti94 a19ae75150 Removing outputs from README 2020-04-26 21:32:18 +01:00
.github/workflows Added test for running actions on master branch. 2020-04-26 21:28:01 +01:00
tests Added sample jmx tests 2020-04-26 20:47:48 +01:00
Dockerfile JMeter dockerfile and action metadata file 2020-04-26 18:57:29 +01:00
LICENSE Initial commit 2020-04-26 17:37:47 +01:00
README.md Removing outputs from README 2020-04-26 21:32:18 +01:00
action.yaml Added test for running actions on master branch. 2020-04-26 21:28:01 +01:00

README.md

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/apache-jmeter-action@v0.1.0
  with:
    testFilePath: tests/sample_test.jmx
    outputLogFilePath: my_jmeter_log.log
    outputResultsPath: my_results.log