Skip to content

Commit a5571ee

Browse files
authored
Fix Github Actions CI load-test job failing due inability to install Feast Python SDK. (#914)
* Add install-python action to install python3.7 to load-test job to fix issue with feast not installing. * Fix typo in runner * Fix more typos * Fix order of job. should install python first.
1 parent f04cdbd commit a5571ee

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/complete.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ jobs:
122122
runs-on: ubuntu-latest
123123
steps:
124124
- uses: actions/checkout@v2
125+
- uses: actions/setup-python@v2
126+
with:
127+
python-version: '3.7'
125128
- name: Run load test
126129
run: make test-load GIT_SHA=${GITHUB_SHA}
127130
- uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)