Skip to content

[Manual] Test Devnet #49

[Manual] Test Devnet

[Manual] Test Devnet #49

name: '[Manual] Test Devnet'
on:
workflow_dispatch:
inputs:
ignore-scripts:
description: 'Ignore scripts'
type: boolean
default: false
jobs:
tests:
name: Run test on ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: rpc-devnet
TEST_RPC_URL: http://127.0.0.1:5050/rpc
uses: ./.github/workflows/_test.yml
with:
use-devnet: ${{ matrix.TEST_RPC_URL != '' }}
ignore-scripts: ${{ inputs.ignore-scripts }}
secrets:
TEST_RPC_URL: ${{ matrix.TEST_RPC_URL }}