File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 43
43
environment : ${{ inputs.environment }}
44
44
45
45
steps :
46
+ # Check Out Repository
47
+ - name : Check Out Repository
48
+ id : checkout_repository
49
+ uses : actions/checkout@v3
50
+
46
51
# Setup Python 3.10
47
52
- name : Setup Python 3.10
48
53
id : python_setup
51
56
python-version : ${{ inputs.python_version }}
52
57
cache : " pip"
53
58
54
- # Check Out Repository
55
- - name : Check Out Repository
56
- id : checkout_repository
57
- uses : actions/checkout@v3
58
-
59
59
# Install Function Dependencies
60
60
- name : Resolve Function Dependencies
61
61
id : function_dependencies
Original file line number Diff line number Diff line change 20
20
continue-on-error : false
21
21
22
22
steps :
23
+ # Check Out Repository
24
+ - name : Check Out Repository
25
+ id : checkout_repository
26
+ uses : actions/checkout@v3
27
+
23
28
# Setup Python 3.10
24
29
- name : Setup Python 3.10
25
30
id : python_setup
28
33
python-version : ${{ inputs.python_version }}
29
34
cache : " pip"
30
35
31
- # Check Out Repository
32
- - name : Check Out Repository
33
- id : checkout_repository
34
- uses : actions/checkout@v3
35
-
36
36
# Run Python Tests
37
37
- name : Run Python Tests
38
38
id : python_test
You can’t perform that action at this time.
0 commit comments