feat(google-vertex): add new models [bot] #1250
Workflow file for this run
This file contains hidden or 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: Validate Model Configs | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| lint-yaml: | |
| name: Lint YAML (2-space indent) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install yamllint | |
| run: pip install yamllint | |
| - name: Run yamllint | |
| run: yamllint -c .yamllint.yml providers/ | |
| validate: | |
| name: Validate YAML files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install CUE | |
| uses: cue-lang/setup-cue@v1.0.1 | |
| - name: Run validation | |
| run: ./.github/test/validate.sh | |