From 0d4cbc79103204c5ff6bdad98261b6c5479ce349 Mon Sep 17 00:00:00 2001 From: Shon Feder Date: Mon, 15 Jun 2020 08:47:26 -0400 Subject: [PATCH] Set integration-test-latest to continue_on_error Closes #304 Signed-off-by: Shon Feder --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a8c622c53..534e5f7e5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -85,6 +85,9 @@ jobs: command: test args: -p tendermint --test integration --no-fail-fast -- --ignored + # NOTE(shonfeder): This job is configured to continue on error, to avoid + # failing CI due to integration failures with unstable/unreleased versions + # of tendermint-go. test-integration-latest: runs-on: ubuntu-latest services: @@ -95,6 +98,7 @@ jobs: - 26657:26657 - 26660:26660 steps: + - continue_on_error: true - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: