From ea71cede42337a08311c3003d86b3220c88521af Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Fri, 10 Jun 2022 17:28:23 +1000 Subject: [PATCH] Fix `if` cond for step "Test" Signed-off-by: Jiahao XU --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 294df150..926d6bd6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -97,7 +97,7 @@ jobs: run: cp target/${{ matrix.target }}/release/${{ matrix.output }} ${{ matrix.output }} - name: Test - if: ${{ matrix.test == 'true' }} + if: ${{ matrix.test }} run: | set -euxo pipefail for bin in $bins; do ./${{ matrix.output }} binstall --no-confirm $bin; done