Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Deprecate CloudRunJob and VertexAICustomTrainingJob infrastructure blocks #429

Deprecate CloudRunJob and VertexAICustomTrainingJob infrastructure blocks

Deprecate CloudRunJob and VertexAICustomTrainingJob infrastructure blocks #429

Workflow file for this run

name: Extras
on: [pull_request]
jobs:
run-extras-tests:
name: Run Imports
runs-on: ubuntu-latest
strategy:
matrix:
extras:
- "cloud_storage"
- "bigquery"
- "secret_manager"
- "aiplatform"
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: pip
cache-dependency-path: requirements*.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade --upgrade-strategy eager -e ".[${{ matrix.extras }}]"
- name: Run extras imports
env:
PREFECT_SERVER_DATABASE_CONNECTION_URL: "sqlite+aiosqlite:///./tests.db"
run: |
python -c "import prefect_gcp.${{ matrix.extras }}; print(prefect_gcp)"