From dcade546c014e3a4b3bafa601b024a7ea79dd07e Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Sun, 27 Mar 2022 18:40:53 -0400 Subject: [PATCH] Update test.patch.yml with lightwalletd job (#3970) * Update test.patch.yml with lightwalletd job * Remove a workflow condition that will always be false In general, patch workflows need the opposite conditions to the original workflow. But in this case, we know the result of the condition will always be true, so we can just delete it. Co-authored-by: teor --- .github/workflows/test.patch.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.patch.yml b/.github/workflows/test.patch.yml index 0b0b89dd..0aebc3ef 100644 --- a/.github/workflows/test.patch.yml +++ b/.github/workflows/test.patch.yml @@ -46,6 +46,13 @@ jobs: steps: - run: 'echo "No build required"' + test-lightwalletd-integration: + name: Test integration with lightwalletd + runs-on: ubuntu-latest + needs: build + steps: + - run: 'echo "No build required"' + regenerate-stateful-disks: name: Regenerate stateful disks runs-on: ubuntu-latest @@ -61,4 +68,4 @@ jobs: runs-on: ubuntu-latest needs: [ build, regenerate-stateful-disks] steps: - - run: 'echo "No build required"' \ No newline at end of file + - run: 'echo "No build required"'