Skip to content

Forward port of JSON-RCP-Relay #96

Forward port of JSON-RCP-Relay

Forward port of JSON-RCP-Relay #96

Workflow file for this run

name: Simple Usage
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Hedera Solo
uses: ./
id: solo
- name: Validate Hedera Solo Outputs
run: |
if [ -z "${{ steps.solo.outputs.accountId }}" ]; then
echo "Account ID is missing!"
exit 1
fi
if [ -z "${{ steps.solo.outputs.privateKey }}" ]; then
echo "Private Key is missing!"
exit 1
fi
if [ -z "${{ steps.solo.outputs.publicKey }}" ]; then
echo "Public Key is missing!"
exit 1
fi
echo "All outputs are valid."