Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tush-tr/setup-jmeter
A github action that allows you to install and setup jmeter inside your github actions workflow
https://github.com/tush-tr/setup-jmeter
cicd github-actions java jdk jmeter jmeter-plugin
Last synced: about 21 hours ago
JSON representation
A github action that allows you to install and setup jmeter inside your github actions workflow
- Host: GitHub
- URL: https://github.com/tush-tr/setup-jmeter
- Owner: tush-tr
- License: mit
- Created: 2022-01-07T15:31:16.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-10T10:57:07.000Z (about 3 years ago)
- Last Synced: 2024-12-01T20:00:31.588Z (about 2 months ago)
- Topics: cicd, github-actions, java, jdk, jmeter, jmeter-plugin
- Language: Shell
- Homepage: https://github.com/marketplace/actions/setup-jmeter
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-jmeter
A github action that allows you to install and setup jmeter inside your github actions workflow.## How to use in your workflow?
```yml
- name: Setup Jmeter
uses: tush-tr/[email protected]
```## Example workflow
```yml
name: Test Action
on:
push
jobs:
test-action:
runs-on: ubuntu-latest
steps:
- name: Setup Jmeter
uses: tush-tr/[email protected]
```