Skip to content

test(JSON-RPC): integration test with the starknet GW #12

test(JSON-RPC): integration test with the starknet GW

test(JSON-RPC): integration test with the starknet GW #12

Workflow file for this run

name: nightly-tests
# We run gateway_integration_test in different times, to avoid a nonce race between parallel runs.
on:
schedule:
- cron: '30 0 * * *' # Uses ubuntu runner.
- cron: '30 3 * * *' # Uses macos runner.
workflow_dispatch: # Uses ubuntu runner.
push:
branches:
- tzahi/gw_integration_test_basic
jobs:
GW-integration-test-ubuntu:
uses: ./.github/workflows/nightly-tests-call.yml
with:
os: ubuntu-latest
secrets:
INTEGRATION_TESTNET_NODE_URL: ${{ secrets.INTEGRATION_TESTNET_NODE_URL }}
INTEGRATION_TESTNET_SENDER_PRIVATE_KEY: ${{ secrets.INTEGRATION_TESTNET_SENDER_PRIVATE_KEY }}
if: github.event.schedule != '30 3 * * *'
GW-integration-test-macos:
uses: ./.github/workflows/nightly-tests-call.yml
with:
os: macos-latest
secrets:
INTEGRATION_TESTNET_NODE_URL: ${{ secrets.INTEGRATION_TESTNET_NODE_URL }}
INTEGRATION_TESTNET_SENDER_PRIVATE_KEY: ${{ secrets.INTEGRATION_TESTNET_SENDER_PRIVATE_KEY }}
if: github.event.schedule == '30 3 * * *'