You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
RapidAPI Testing Trigger
v0.0.2
Pre-release
This GitHub Action allows you to trigger the execution of RapidAPI Testing tests.
on: [push]
jobs:
run_api_test:
runs-on: ubuntu-latest
name: Execute RapidAPI API Tests
steps:
- name: Execute Tests
id: tstExec
uses: RapidAPI/[email protected]
with:
test: 'YOUR_TEST_ID'
location: 'AWS-US-WEST-2'
environment: 'ENV_ID(OPTIONAL)'
- name: Show Results
run: echo "The test took ${{ steps.tstExec.outputs.time }}ms to run"; echo "The test result was ${{ steps.tstExec.outputs.computedStatus }}"; echo "View Report - ${{ steps.tstExec.outputs.reportUrl }}"
Required The ID of the test you wish to execute.
Required The location the test will be executed in. Options:
AWS-US-EAST-1
: N. VirginiaAWS-US-WEST-2
: OregonAWS-AP-EAST-1
: Hong KongAWS-AP-SOUTH-1
: MumbaiAWS-AP-SOUTHEAST-1
: SingaporeAWS-AP-NORTHEAST-1
: TokyoAWS-EU-CENTRAL-1
: FrankfurtAWS-EU-WEST-3
: ParisAWS-SA-EAST-1
: São Paulo
The environment you want to run the test in. If you don't use environment omit this parameter
The time it took the test to execute, in milliseconds (1000ms=s)
True/false based on the result of the test execution
URL of a human-readable report of the test execution
A human-readable test status that matches the status values on the test dashboard in the UI
For any help using this integration, reach out to [email protected]
. You can also see RapidAPI Testing Guide in our Help Center.