We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0de37bb commit abc1523Copy full SHA for abc1523
.github/workflows/test.yml
@@ -23,13 +23,17 @@ jobs:
23
# Steps represent a sequence of tasks that will be executed as part of the job
24
steps:
25
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26
- - uses: actions/checkout@v2
+ - 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
32
- name: Set up Python 3.8
33
uses: actions/setup-python@v2
34
with:
35
# Semantic version range syntax or exact version of a Python version
36
python-version: '3.8'
- lfs: true
37
38
- name: Install dependencies
39
run: |
0 commit comments