Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 3200a76

Browse files
committed
ci: Fix checkout not pulling whole repo
Fixes: #419 Fixes: #420 Signed-off-by: John Andersen <[email protected]>
1 parent 4f9a28a commit 3200a76

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/testing.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v2
18+
- name: Fetch rest of repo
19+
run: |
20+
git fetch --all
1821
- name: Set up Python ${{ matrix.python-version }}
1922
uses: actions/setup-python@v1
2023
with:
@@ -42,6 +45,9 @@ jobs:
4245

4346
steps:
4447
- uses: actions/checkout@v2
48+
- name: Fetch rest of repo
49+
run: |
50+
git fetch --all
4551
- name: Set up Python ${{ matrix.python-version }}
4652
uses: actions/setup-python@v1
4753
with:

0 commit comments

Comments
 (0)