From 729cd6a07e0c8ff62b225be18a605976a1665f41 Mon Sep 17 00:00:00 2001 From: Sebastian Castro Date: Sat, 11 Jan 2025 17:37:06 -0500 Subject: [PATCH] [infra] Use commas to separate multiple tox commands --- .github/workflows/update-poetry-cache.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-poetry-cache.yaml b/.github/workflows/update-poetry-cache.yaml index 3e92935f..53f60ba9 100644 --- a/.github/workflows/update-poetry-cache.yaml +++ b/.github/workflows/update-poetry-cache.yaml @@ -52,7 +52,7 @@ jobs: if: steps.cache-deps.outputs.cache-hit != 'true' - name: Tox - Install Dependencies - run: poetry run tox --workdir ${{ env.VENV_DIR }} --notest -e ${{ matrix.python-py-version }} check my${{ matrix.python-py-version }} + run: poetry run tox --workdir ${{ env.VENV_DIR }} --notest -e ${{ matrix.python-py-version }},check,my${{ matrix.python-py-version }} if: steps.cache-deps.outputs.cache-hit != 'true'