Skip to content

GitHub Action to run performance tests using Apache JMeter and its plugins.

License

Notifications You must be signed in to change notification settings

QAInsights/PerfAction

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

About PerfAction

contributions welcome saythanks

This GitHub Action helps to automate performance testing using Apache JMeter and its plugins.

How to use this GitHub Action?

Prerequisites

Following are the prerequisites for this GitHub Action:

  • test-plan-path
    • Mandatory
    • JMeter test plan and its dependencies such as test data, plugins etc
  • args
    • Optional
    • Additional arguments you can pass it to your test plan execution

Usage

Example #1 with no arguments

- name: JMeter Test
  uses: QAInsights/[email protected]
  with:
    test-plan-path: ./TestPlans/T01_HomePageLoad.jmx
    args: ""

Example #2 with arguments

- name: JMeter Test
  uses: QAInsights/[email protected]
  with:
    test-plan-path: ./TestPlans/T01_HomePageLoad.jmx
    args: "-H my.proxy.server -P 8000"

Download JMeter Test Results

By default, this GitHub Action will log the performance statistics under result.jtl. After the execution, it will be uploaded to the GitHub artifacts.
To download the JMeter results, go to your Actions and then click on the executed workflow, then click on jmeter-results link which will download the zip file.