From 6858ee74cdeeecfe420e9b5920516fb314ccdf2c Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 18 Mar 2023 16:30:50 +0100 Subject: [PATCH] fix: with proper '' --- .github/workflows/ci-multiplatform.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-multiplatform.yml b/.github/workflows/ci-multiplatform.yml index 2731fb1..f5aca4c 100644 --- a/.github/workflows/ci-multiplatform.yml +++ b/.github/workflows/ci-multiplatform.yml @@ -88,29 +88,29 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2.0.0 - uses: actions-rs/toolchain@v1 - if: matrix.target == "" + if: matrix.target == '' with: toolchain: ${{ matrix.rust }} - uses: actions-rs/toolchain@v1 - if: matrix.target != "" + if: matrix.target != '' with: toolchain: ${{ matrix.rust }} use-cross: true - uses: actions-rs/cargo@v1 - if: matrix.target != "" + if: matrix.target != '' with: use-cross: true command: build --workspace --verbose - uses: actions-rs/cargo@v1 - if: matrix.target == "" + if: matrix.target == '' with: command: build --workspace --verbose - uses: actions-rs/cargo@v1 - if: matrix.target != "" + if: matrix.target != '' with: use-cross: true command: test --all --verbose - uses: actions-rs/cargo@v1 - if: matrix.target == "" + if: matrix.target == '' with: command: test --all --verbose