Skip to content

Commit 5cbe129

Browse files
committed
Fix syntax on fetch-depth
1 parent 37f464b commit 5cbe129

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ jobs:
1212
runs-on: windows-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
fetch-depth: 0
15+
with:
16+
# Force a non-shallow checkout, so that clang-format can access source history to compare against
17+
# See https://github.com/actions/checkout for more details.
18+
fetch-depth: 0
1619

1720
- name: Find vcvars64.bat
1821
run: |

0 commit comments

Comments
 (0)