From 3d300960563d0e610bc592c2c91c22e97caa0cb9 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Thu, 6 Jun 2024 09:48:20 +0200 Subject: [PATCH] single quote. --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9bf55016..84266ce5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -124,16 +124,16 @@ jobs: cache-from: type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache${{ matrix.label }},mode=min cache-to: type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache${{ matrix.label }},mode=min - name: Set up Python - if: matrix.name == "cuda" + if: matrix.name == 'cuda' uses: actions/setup-python@v4 with: python-version: 3.9 - name: Install - if: matrix.name == "cuda" + if: matrix.name == 'cuda' run: | make install-integration-tests - name: Run tests - if: matrix.name == "cuda" + if: matrix.name == 'cuda' run: | export DOCKER_VOLUME=/mnt/cache export DOCKER_IMAGE=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:sha-${{ env.GITHUB_SHA_SHORT }}