Skip to content

Commit 85a3256

Browse files
committed
fix(ci): Enable Git LFS file downloads in CI workflow
This commit updates the GitHub Actions CI workflow to ensure that Git LFS files are downloaded during the checkout step. This change is necessary for proper handling of large files in the repository, improving the reliability of the CI process.
1 parent edb414f commit 85a3256

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

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

1616
steps:
1717
- uses: actions/checkout@v4
18+
with:
19+
lfs: true # Ensure Git LFS files are downloaded
1820

1921
- name: Set up Python ${{ matrix.python-version }}
2022
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)