Skip to content

Commit 1a06d8e

Browse files
committed
Add GHA to invoke RPC integration tests on commits to master
1 parent 8e43a2d commit 1a06d8e

2 files changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: RPC Integration Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
rpc-integration:
10+
uses: stellar/stellar-rpc/.github/workflows/stellar-rpc.yml@main
11+
with:
12+
core_git_ref: ${{ github.sha }}

.github/workflows/rpc.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: RPC Integration Tests
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
rpc:
15+
name: RPC integration tests
16+
uses: stellar/stellar-rpc/.github/workflows/integration-tests.yml@main
17+
with:
18+
core_git_ref: ${{ github.sha }}
19+
protocol_version: '25'

0 commit comments

Comments
 (0)