Skip to content

Airflow Data Quality Provider part 1 #1926

Airflow Data Quality Provider part 1

Airflow Data Quality Provider part 1 #1926

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: "Install uv"
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
python-version: "3.12"
- name: "Run registry extraction tests"
run: cd dev/registry && uv run --group dev pytest tests/ -v