Skip to content

Commit

Permalink
unshallow clone
Browse files Browse the repository at this point in the history
  • Loading branch information
PanyiDong committed Nov 23, 2023
1 parent e15bd97 commit 5b5d574
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build-nn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
PYTHON: "3.9"
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@master
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
PYTHON: "3.9"
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@master
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
PYTHON: "3.9"
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@master
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
PYTHON: "3.9"
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@master
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ jobs:
name: runner / black
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Check files using the black formatter
uses: rickstaa/action-black@v1
id: action_black
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:

steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@master
with:
Expand Down Expand Up @@ -51,6 +53,8 @@ jobs:

steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@master
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
PYTHON: "3.9"
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@master
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
PYTHON: "3.9"
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@master
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
PYTHON: "3.9"
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@master
with:
Expand Down

0 comments on commit 5b5d574

Please sign in to comment.