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

Commit 7efa9d9

Browse files
committed
ci: Fetch all history for all tags and branches
Signed-off-by: John Andersen <[email protected]>
1 parent 3902d9f commit 7efa9d9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/testing.yml

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

1616
steps:
1717
- uses: actions/checkout@v2
18-
- name: Fetch rest of repo
18+
- name: Checkout full upstream repo
1919
run: |
20-
git fetch --all
20+
git remote set-url origin https://github.com/intel/dffml
21+
git fetch --prune --unshallow
2122
- name: Set up Python ${{ matrix.python-version }}
2223
uses: actions/setup-python@v1
2324
with:
@@ -45,9 +46,10 @@ jobs:
4546

4647
steps:
4748
- uses: actions/checkout@v2
48-
- name: Fetch rest of repo
49+
- name: Checkout full upstream repo
4950
run: |
50-
git fetch --all
51+
git remote set-url origin https://github.com/intel/dffml
52+
git fetch --prune --unshallow
5153
- name: Set up Python ${{ matrix.python-version }}
5254
uses: actions/setup-python@v1
5355
with:

0 commit comments

Comments
 (0)