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

GitHub Action

Keploy TestRun Report

0.0.2

Keploy TestRun Report

activity

Keploy TestRun Report

A action to run e2e test run

Installation

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

              

- name: Keploy TestRun Report

uses: keploy/[email protected]

Learn more about this action in keploy/testGPT

Choose a version

Test-ReportQL

name: Run test-cases
on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  my_job:
    runs-on: ubuntu-latest

    steps:
    - name: Keploy Report
      uses: keploy/testgpt@main
      with:
        working-directory: /
        delay: 10
        command: node src/app.js

Enviormental Varibales needed : - working-directory :- Path where the pkg, keploy folder is present. delay :- is optional, it is the time taken by the application to get started. command :- Command to run the application.

Right Now languages such as :- Go,Java,NodeJS & Python are supported.