Skip to content

Commit 008b2a7

Browse files
committed
CI: add Caml nodes to GraphQL endpoint tests
Add devnet and mainnet Caml nodes to the remote GraphQL test suite to ensure compatibility between Rust and OCaml implementations.
1 parent 0775284 commit 008b2a7

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/test-graphql-remote.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,23 @@ on:
88
# Run daily at 00:00 UTC
99
- cron: '0 0 * * *'
1010

11-
env:
12-
GRAPHQL_ENDPOINT: http://mina-rust-plain-3.gcp.o1test.net/graphql
13-
1411
jobs:
1512
remote-graphql-tests:
16-
name: Test Remote GraphQL Endpoint
13+
name: Test ${{ matrix.node_name }} GraphQL Endpoint
1714
runs-on: ubuntu-latest
1815
timeout-minutes: 10
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
include:
20+
- node_name: Rust Node
21+
endpoint: http://mina-rust-plain-3.gcp.o1test.net/graphql
22+
- node_name: Caml Node
23+
endpoint: http://devnet-plain-1.gcp.o1test.net/graphql
24+
- node_name: Mainnet Caml Node
25+
endpoint: http://mainnet-plain-1.gcp.o1test.net/graphql
26+
env:
27+
GRAPHQL_ENDPOINT: ${{ matrix.endpoint }}
1928

2029
steps:
2130
- name: Checkout repository

0 commit comments

Comments
 (0)