try out spinning full stack for testing metaflow #1
Workflow file for this run
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: Test Metaflow with complete Kubernetes stack | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source | |
uses: actions/checkout@v4 | |
- name: Install Metaflow | |
run: | | |
python -m pip install --upgrade pip | |
pip install metaflow kubernetes | |
- name: Bring up the environment | |
run: | | |
echo "Starting environment in the background..." | |
MINIKUBE_CPUS=2 metaflow-dev all-up & | |
# Give time to spin up. Adjust as needed: | |
sleep 150 | |
- name: Wait & run flow | |
run: | | |
metaflow-dev shell | |
echo "Environment is ready; running flow now..." | |
python metaflow/tutorials/00-helloworld/helloworld.py run --with kubernetes | |
- name: Tear down environment | |
run: | | |
metaflow-dev down |