Pydantic config #1023
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
# This workflow will test gandlf deploy for model and metrics MLCubes | |
name: MLCube-Test | |
on: | |
push: | |
branches: [master] | |
pull_request: {} | |
jobs: | |
test-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Call reusable workflow to install dependencies | |
id: dependencies | |
uses: ./.github/workflows/dependencies | |
- name: Run mlcube deploy tests | |
working-directory: ./testing | |
if: ${{steps.dependencies.outputs.other_modified_files_count > 0}} # Run on any non-docs change | |
run: | | |
sh test_deploy.sh |