From e48cc433319e49c9a3d792050a9a2f9b8cb3e53c Mon Sep 17 00:00:00 2001 From: Paul Natsuo Kishimoto Date: Mon, 18 Sep 2023 13:38:31 +0200 Subject: [PATCH] Fix quoting in "Code quality" CI job --- .github/workflows/pytest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 7391443f43..a3e43d4a7e 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -113,7 +113,7 @@ jobs: - name: Force recreation of pre-commit virtual environment for mypy if: github.event_name == 'schedule' # Comment this line to run on a PR - run: gh cache list -L 999 | cut -f2 | grep pre-commit | xargs -I{} 'gh cache delete "{}" || true' + run: gh cache list -L 999 | cut -f2 | grep pre-commit | xargs -I{} gh cache delete "{}" || true env: { GH_TOKEN: "${{ github.token }}" } - uses: pre-commit/action@v3.0.0