Skip to content

Commit abc1523

Browse files
authored
setup lfs in test
1 parent 0de37bb commit abc1523

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,17 @@ jobs:
2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
steps:
2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26-
- uses: actions/checkout@v2
26+
- name: Checkout github repo (+ download lfs dependencies)
27+
uses: actions/checkout@v2
28+
with:
29+
lfs: true
30+
- name: Checkout LFS objects
31+
run: git lfs checkout
2732
- name: Set up Python 3.8
2833
uses: actions/setup-python@v2
2934
with:
3035
# Semantic version range syntax or exact version of a Python version
3136
python-version: '3.8'
32-
lfs: true
3337

3438
- name: Install dependencies
3539
run: |

0 commit comments

Comments
 (0)