From 1bd742f7e986238e1c4d011b4cee71e4218c60d6 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 24 Sep 2022 16:31:29 +0200 Subject: [PATCH] Properly setup pre-commit job --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb8084e59..b677d924f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -275,7 +275,12 @@ jobs: pre-commit: runs-on: ubuntu-22.04 steps: - - uses: pre-commit/action@v3.0.0 + - uses: actions/checkout@v3 + + - uses: actions/setup-python@v4 + with: + python-version: "3.10" + - uses: pre-commit/action@v3.0.0 docs_check: runs-on: ubuntu-20.04