Skip to content

Add GCSToAzureBlobStorageOperator for GCS to Azure Blob transfer #783

Add GCSToAzureBlobStorageOperator for GCS to Azure Blob transfer

Add GCSToAzureBlobStorageOperator for GCS to Azure Blob transfer #783

Workflow file for this run

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
---
name: Registry Tests
on: # yamllint disable-line rule:truthy
pull_request:
branches: [main]
paths:
- 'dev/registry/**'
- 'registry/**'
- 'providers/*/provider.yaml'
- 'providers/*/*/provider.yaml'
- '.github/workflows/registry-tests.yml'
push:
branches: [main]
paths:
- 'dev/registry/**'
permissions:
contents: read
concurrency:
group: registry-tests-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
registry-tests:
name: "Registry extraction tests"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: "Checkout repository"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: "Install uv"
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
python-version: "3.12"
- name: "Run registry extraction tests"
run: cd dev/registry && uv run --group dev pytest tests/ -v