Skip to content

Commit ecc5354

Browse files
Fix CI/CD pipeline: Enable Git LFS for binary test files
- Add 'lfs: true' to all actions/checkout@v3 steps in test workflow - This ensures .bme test files are properly downloaded as binary content - Fixes 'not an OLE2 structured storage file' error in remote pipeline
1 parent d2c0f78 commit ecc5354

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v3
21+
with:
22+
lfs: true
2123
- uses: actions/setup-python@v4
2224
with:
2325
python-version: "3.10"
@@ -32,6 +34,8 @@ jobs:
3234

3335
steps:
3436
- uses: actions/checkout@v3
37+
with:
38+
lfs: true
3539
- uses: actions/setup-python@v4
3640
with:
3741
python-version: "3.11.9"
@@ -46,6 +50,8 @@ jobs:
4650

4751
steps:
4852
- uses: actions/checkout@v3
53+
with:
54+
lfs: true
4955
- uses: actions/setup-python@v4
5056
with:
5157
python-version: "3.12"
@@ -60,6 +66,8 @@ jobs:
6066

6167
steps:
6268
- uses: actions/checkout@v3
69+
with:
70+
lfs: true
6371
- uses: actions/setup-python@v4
6472
with:
6573
python-version: "3.11.9"
@@ -74,6 +82,8 @@ jobs:
7482

7583
steps:
7684
- uses: actions/checkout@v3
85+
with:
86+
lfs: true
7787
- name: Check PR title
7888
run: ./scripts/check_title
7989
env:

0 commit comments

Comments
 (0)