etl: add 'arg-type=FQN' (new) #938
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: Python ETL Tests | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup-minikube | |
uses: medyagh/[email protected] | |
with: | |
driver: docker | |
container-runtime: docker | |
cpus: max | |
memory: max | |
- name: Run AIStore in Minikube | |
run: | | |
cd $GITHUB_WORKSPACE/deploy/dev/k8s/ | |
./minimal.sh | |
- name: Setup Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Python ETL Tests | |
run: | | |
cd $GITHUB_WORKSPACE/python/ | |
export AIS_ENDPOINT="http://$(minikube ip):8080" | |
make python_etl_tests | |