File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
11
11
steps :
12
- - uses : actions/checkout@v3
13
- with :
14
- fetch-depth : 0
15
- fetch-tags : true
12
+ - name : Checkout repository
13
+ uses : actions/checkout@v3
14
+
15
+ - name : Fetch all tags and branches
16
+ run : git fetch --prune --unshallow
16
17
17
18
- uses : actions/setup-python@v4
18
19
with :
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ back using one of the formats provided by pandas_.
133
133
# Load multiple documents.
134
134
return pd.DataFrame(json.loads(data))
135
135
136
- You would then use the custom serializer/deserializer when working with collections:
136
+ You would then use the custom serializer/deserializer when working with collections.
137
137
138
138
**Example: **
139
139
You can’t perform that action at this time.
0 commit comments