Skip to content

Commit bdca9bc

Browse files
committed
Update workflows
1 parent 096ed02 commit bdca9bc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/_functionAppDeployTemplate.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ jobs:
4343
environment: ${{ inputs.environment }}
4444

4545
steps:
46+
# Check Out Repository
47+
- name: Check Out Repository
48+
id: checkout_repository
49+
uses: actions/checkout@v3
50+
4651
# Setup Python 3.10
4752
- name: Setup Python 3.10
4853
id: python_setup
@@ -51,11 +56,6 @@ jobs:
5156
python-version: ${{ inputs.python_version }}
5257
cache: "pip"
5358

54-
# Check Out Repository
55-
- name: Check Out Repository
56-
id: checkout_repository
57-
uses: actions/checkout@v3
58-
5959
# Install Function Dependencies
6060
- name: Resolve Function Dependencies
6161
id: function_dependencies

.github/workflows/_functionAppTestTemplate.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
continue-on-error: false
2121

2222
steps:
23+
# Check Out Repository
24+
- name: Check Out Repository
25+
id: checkout_repository
26+
uses: actions/checkout@v3
27+
2328
# Setup Python 3.10
2429
- name: Setup Python 3.10
2530
id: python_setup
@@ -28,11 +33,6 @@ jobs:
2833
python-version: ${{ inputs.python_version }}
2934
cache: "pip"
3035

31-
# Check Out Repository
32-
- name: Check Out Repository
33-
id: checkout_repository
34-
uses: actions/checkout@v3
35-
3636
# Run Python Tests
3737
- name: Run Python Tests
3838
id: python_test

0 commit comments

Comments
 (0)