-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FSTORE-985] Update GitHub Actions with TF tutorials (#199)
* TF Tutorials * All jobs into one workflow * Update API Keys
- Loading branch information
Showing
7 changed files
with
154 additions
and
96 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: test-tutorials-python | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
test_tutorials38: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo content | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.8' | ||
|
||
- name: Install Python packages | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Execute Python workflows from bash script | ||
env: | ||
HOPSWORKS_API_KEY: ${{ secrets.HOPSWORKS_API_KEY_38 }} | ||
WEATHER_API_KEY: ${{ secrets.WEATHER_API_KEY }} | ||
run: ./scripts/test-notebooks.sh | ||
|
||
test_tutorials39: | ||
needs: test_tutorials38 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo content | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install Python packages | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Execute Python workflows from bash script | ||
env: | ||
HOPSWORKS_API_KEY: ${{ secrets.HOPSWORKS_API_KEY_39 }} | ||
WEATHER_API_KEY: ${{ secrets.WEATHER_API_KEY }} | ||
run: ./scripts/test-notebooks.sh | ||
|
||
test_tutorials310: | ||
needs: test_tutorials39 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout repo content | ||
uses: actions/checkout@v3 | ||
|
||
- name: setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: install python packages | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: execute python workflows from bash script | ||
env: | ||
HOPSWORKS_API_KEY: ${{ secrets.HOPSWORKS_API_KEY_310 }} | ||
WEATHER_API_KEY: ${{ secrets.WEATHER_API_KEY }} | ||
run: ./scripts/test-notebooks.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters