Skip to content

test(starknet_client): integration test with the starknet GW #7

test(starknet_client): integration test with the starknet GW

test(starknet_client): integration test with the starknet GW #7

Workflow file for this run

name: nightly-tests
# We run the GW-integration-test in different times, so we won't have a nonce race between parallel
# runs.
on:
schedule:
- cron: "30 0 * * *" # ubuntu runner test
- cron: "30 3 * * *" # macos runner test
workflow_dispatch:
push:
branches:
- tzahi/gw_integration_test_basic
jobs:
GW-integration-test-ubuntu:
uses: ./.github/workflows/nightly-tests-call.yml
with:
os: ubuntu-latest
if: github.event.schedule != "30 3 * * *"

Check failure on line 18 in .github/workflows/nightly-tests.yml

View workflow run for this annotation

GitHub Actions / nightly-tests

Invalid workflow file

The workflow is not valid. .github/workflows/nightly-tests.yml (Line: 18, Col: 9): Unexpected symbol: '"30'. Located at position 26 within expression: github.event.schedule != "30 3 * * *" .github/workflows/nightly-tests.yml (Line: 24, Col: 9): Unexpected symbol: '"30'. Located at position 26 within expression: github.event.schedule == "30 3 * * *"
GW-integration-test-macos:
uses: ./.github/workflows/nightly-tests-call.yml
with:
os: macos-latest
if: github.event.schedule == "30 3 * * *"