From 7849f6e64f6dd51d8e926faa903f0b3189ae1a90 Mon Sep 17 00:00:00 2001 From: hypherionmc Date: Sun, 19 May 2024 20:15:28 +0200 Subject: [PATCH] Make sure all branches are available in the CI --- .github/workflows/test-orbit-pr.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-orbit-pr.yml b/.github/workflows/test-orbit-pr.yml index 349e0bf..a3d5595 100644 --- a/.github/workflows/test-orbit-pr.yml +++ b/.github/workflows/test-orbit-pr.yml @@ -12,6 +12,11 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Fetch all branches and tags + run: git fetch --all - name: Set Up JDK uses: actions/setup-java@v3 @@ -29,7 +34,7 @@ jobs: restore-keys: | ${{ runner.os }}-gradle- - - name: Test LTS Branches + - name: Setup Workspace run: chmod +x ./gradle && ./gradlew setupWorkspace - name: Test LTS Branches