From 3bad6d909c8403a010e3477b43f06251158af60f Mon Sep 17 00:00:00 2001 From: lumbric Date: Tue, 7 May 2024 19:15:31 +0200 Subject: [PATCH] Fix minor syntax error in Github actions config --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d1a8baa..c502680 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,8 +13,9 @@ jobs: steps: - name: Set up Git repository uses: actions/checkout@v4 - # unfortunately we need to fetch all tags for version.py to work - fetch-depth: 0 + with: + # unfortunately we need to fetch all tags for version.py to work + fetch-depth: 0 - name: Fetch all Git tags # this is necessary for version.py because git describe does not work on a shallow clone: