From 78d3a1dec2393e1a730263fc546e7dfedbdaf526 Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Thu, 16 Dec 2021 11:26:12 +0100 Subject: [PATCH] Fix workflow by quoting Python version in YAML file --- .github/workflows/mypy_primer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mypy_primer.yml b/.github/workflows/mypy_primer.yml index f327eefdfc27..b793b3c2c828 100644 --- a/.github/workflows/mypy_primer.yml +++ b/.github/workflows/mypy_primer.yml @@ -26,7 +26,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v2 with: - python-version: 3.10 + python-version: "3.10" - name: Install dependencies run: pip install git+https://github.com/hauntsaninja/mypy_primer.git - name: Run mypy_primer