Skip to content

Commit ef88629

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 86c7116 commit ef88629

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"
@@ -34,6 +36,8 @@ jobs:
3436

3537
steps:
3638
- uses: actions/checkout@v3
39+
with:
40+
lfs: true
3741
- uses: actions/setup-python@v4
3842
with:
3943
python-version: "3.11.9"
@@ -51,6 +55,8 @@ jobs:
5155

5256
steps:
5357
- uses: actions/checkout@v3
58+
with:
59+
lfs: true
5460
- uses: actions/setup-python@v4
5561
with:
5662
python-version: "3.12"
@@ -67,6 +73,8 @@ jobs:
6773

6874
steps:
6975
- uses: actions/checkout@v3
76+
with:
77+
lfs: true
7078
- uses: actions/setup-python@v4
7179
with:
7280
python-version: "3.11.9"
@@ -83,6 +91,8 @@ jobs:
8391

8492
steps:
8593
- uses: actions/checkout@v3
94+
with:
95+
lfs: true
8696
- name: Check PR title
8797
run: ./scripts/check_title
8898
env:

0 commit comments

Comments
 (0)