File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 6
6
check :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - name : Checkout repository and submodules
9
+ - name : Checkout repository
10
10
uses : actions/checkout@v3
11
- with :
12
- submodules : true
13
- # This is only needed for the flutter submodule.
14
- # We can't do a depth-1 clone, because we need the most recent tag
15
- # so that Flutter knows its version and sees the constraint in our
16
- # pubspec is satisfied. It's uncommon for flutter/flutter to go
17
- # more than 100 commits between tags. Fetch 1000 for good measure.
18
- fetch- depth: 1000
11
+
12
+ - name : Checkout flutter submodule
13
+ # We can't do a depth-1 clone, because we need the most recent tag
14
+ # so that Flutter knows its version and sees the constraint in our
15
+ # pubspec is satisfied. It's uncommon for flutter/flutter to go
16
+ # more than 100 commits between tags. Fetch 1000 for good measure.
17
+ run : |
18
+ git submodule update --init -- depth 1000
19
19
20
20
- name : Add vendored flutter to PATH
21
21
run : |
You can’t perform that action at this time.
0 commit comments