[Manual] Test Testnet #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '[Manual] Test Testnet' | |
on: workflow_dispatch | |
jobs: | |
tests: | |
name: Run test on ${{ matrix.name }} | |
strategy: | |
max-parallel: 1 # needed until we get a seperate account for the rpc provider, until then running them in parallel would result in a nonce issue | |
matrix: | |
# name: [sequencer-goerli, rpc-goerli] | |
name: [rpc-goerli] | |
include: | |
# - name: sequencer-goerli | |
# TEST_PROVIDER_BASE_URL: https://alpha4-2.starknet.io | |
- name: rpc-goerli | |
ENABLE_TEST_RPC_URL: true | |
uses: ./.github/workflows/_test.yml | |
secrets: | |
# TEST_PROVIDER_BASE_URL: ${{ matrix.TEST_PROVIDER_BASE_URL }} | |
TEST_RPC_URL: ${{ matrix.ENABLE_TEST_RPC_URL && secrets.TEST_RPC_URL_2 }} | |
TEST_ACCOUNT_PRIVATE_KEY: ${{ secrets.TEST_ACCOUNT_PRIVATE_KEY_2 }} | |
TEST_ACCOUNT_ADDRESS: ${{ secrets.TEST_ACCOUNT_ADDRESS_2 }} |