Add ledger entry get
implementation
#6746
This file contains hidden or 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: Soroban Tools e2e | |
on: | |
push: | |
branches: [main, release/**] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_protected == 'true' && github.sha || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
systems-test: | |
if: github.event_name == 'push' | |
strategy: | |
fail-fast: false | |
matrix: | |
sys: | |
# x64 | |
- os: ubuntu-latest-16-cores | |
# ARM | |
- os: ubuntu-jammy-16-cores-arm64 | |
# Intel | |
- os: macos-13 | |
# ARM macos is not yet supported, see https://github.com/douglascamata/setup-docker-macos-action | |
# Windows is not yet supported due to issues with running quickstart image | |
# - os: windows-latest-8-cores | |
uses: stellar/system-test/.github/workflows/test.yml@master | |
with: | |
stellar-cli-ref: ${{ github.ref }} | |
test-filter: "^TestDappDevelop$/^.*$" | |
runner: ${{ matrix.sys.os }} | |
quickstart-tag: "testing" | |
systems-test-linux: | |
if: github.event_name != 'push' | |
uses: stellar/system-test/.github/workflows/test.yml@master | |
with: | |
stellar-cli-ref: ${{ github.ref }} | |
test-filter: "^TestDappDevelop$/^.*$" | |
runner: "ubuntu-latest" | |
quickstart-tag: "testing" |