From 94a1e06ca6f52a9474097e3df2e7f69586b55518 Mon Sep 17 00:00:00 2001 From: saattrupdan Date: Tue, 26 Nov 2024 14:54:36 +0100 Subject: [PATCH] fix: Add "with" to setup-python in ci workflow --- {{cookiecutter.project_name}}/.github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yaml b/{{cookiecutter.project_name}}/.github/workflows/ci.yaml index cea2c24..67b8f49 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/ci.yaml +++ b/{{cookiecutter.project_name}}/.github/workflows/ci.yaml @@ -21,7 +21,8 @@ jobs: steps: - uses: actions/checkout@v{{ cookiecutter._checkout_action_version }} - uses: actions/setup-python@v{{ cookiecutter._setup_python_action_version }} - python-version: "{{ cookiecutter.python_version }}" + with: + python-version: "{{ cookiecutter.python_version }}" - uses: pre-commit/action@v{{ cookiecutter._pre_commit_action_version }} pytest: