Terraform File for K8s Clusters and Pools Definition #65
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
name: automl | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "research/**" | |
jobs: | |
update: | |
name: Update AutoML API | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8.10 | |
cache: pip | |
- name: Install requirements | |
run: pip install -r mvp/requirements.txt | |
# - name: Run tests | |
# run: python -B -m pytest |