Wait for operation commit (#436)

* Wait for operation commit

* Review: Option with timeout, return execution err to API

* Review: Add comment about error forwarding in ???
This commit is contained in:
Egor Ivkov
2022-04-06 18:00:44 +03:00
committed by GitHub
parent 772e8b67bd
commit aeea31dfa4
10 changed files with 184 additions and 78 deletions

View File

@@ -30,3 +30,24 @@ jobs:
run: |
./tests/integration-tests.sh
shell: bash
test-consensus:
runs-on: ubuntu-latest
steps:
- name: Install minimal stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v1
- name: Install dependencies
run: sudo apt-get install clang
- name: Build
run: cargo build --features consensus
- name: Run integration tests
run: |
./tests/integration-tests.sh
shell: bash