Skip to content

Commit fc77aa5

Browse files
authored
added python to workflows (#935)
Signed-off-by: Paul Schultz <[email protected]> Signed-off-by: Paul Schultz <[email protected]>
1 parent 2609b35 commit fc77aa5

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ jobs:
7676
runs-on: ubuntu-latest
7777
needs: [build-and-validate]
7878
steps:
79+
- name: Setup Python
80+
uses: actions/setup-python@v4
81+
with:
82+
python-version: '3.9'
83+
7984
- name: Checkout devfile docs
8085
uses: actions/checkout@v2
8186
with:

.github/workflows/release-schema.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ jobs:
99
release-json-schema:
1010
runs-on: ubuntu-latest
1111
steps:
12+
- name: Setup Python
13+
uses: actions/setup-python@v4
14+
with:
15+
python-version: '3.9'
16+
1217
- name: Checkout devfile/devfile-web
1318
uses: actions/checkout@v2
1419
with:

0 commit comments

Comments
 (0)