test(starknet_client): integration test with the starknet GW #1
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: nightly-tests | ||
on: | ||
schedule: | ||
- cron: "30 0 * * *" | ||
- branches: [main] | ||
workflow_dispatch: | ||
jobs: | ||
GW-integration-test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
- uses: Swatinem/rust-cache@v2 | ||
- run: > | ||
INTEGRATION_TEST_NODE_URL=${{ secrets.INTEGRATION_TESTNET_NODE_URL }} | ||
SENDER_PRIVATE_KEY=${{ secrets.INTEGRATION_TESTNET_SENDER_PRIVATE_KEY }} | ||
cargo test --test gateway_integration_test -p starknet_client test_gw_integration_testnet | ||
-- --ignored; | ||
retVal=$?; | ||
if [ $retVal -ne 0 ]; then | ||
echo "Integration test failed with exit code $retVal" | ||
fi; | ||
exit $retVal |