Prerequisites
- Revyl account with an API key
- App and tests already created (see Your First Test)
Step 1: Store your API key
AddREVYL_API_KEY as a repository secret in GitHub:
Settings → Secrets and variables → Actions → New repository secret
Name: REVYL_API_KEY
Value: your API key from Account → API Keys
Step 2: Add a workflow file
Option A: Run tests against the latest build
The simplest setup. Runs your test workflow on every PR using the most recently uploaded build.0 on pass, 1 on failure.
Option B: Build, upload, and test
Build your app fresh, upload the artifact, and run the full suite against it:revyl run <workflow> -w builds your app, uploads the artifact, and runs all tests. Use --no-build to skip the build step.