From be52d515177654fe94f21f6cd2b9c161d4f81195 Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Sat, 10 Aug 2024 22:42:38 +0100 Subject: [PATCH] Try ensuring the checkout is not depth=1 --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ec54af..a8ba166 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,6 +10,8 @@ jobs: python-version: ["3.11"] steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: @@ -29,6 +31,5 @@ jobs: run: | git fetch origin git checkout -b release origin/release - git pull git merge --no-ff origin/main git push origin release \ No newline at end of file