Merge branch 'datahub-project:master' into master #83
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
name: Prefect Plugin | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- ".github/workflows/prefect-plugin.yml" | |
- "metadata-ingestion-modules/prefect-plugin/**" | |
- "metadata-ingestion/**" | |
- "metadata-models/**" | |
pull_request: | |
branches: | |
- "**" | |
paths: | |
- ".github/workflows/prefect-plugin.yml" | |
- "metadata-ingestion-modules/prefect-plugin/**" | |
- "metadata-ingestion/**" | |
- "metadata-models/**" | |
release: | |
types: [published] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
prefect-plugin: | |
runs-on: ubuntu-latest | |
env: | |
SPARK_VERSION: 3.0.3 | |
DATAHUB_TELEMETRY_ENABLED: false | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
include: | |
- python-version: "3.8" | |
- python-version: "3.9" | |
- python-version: "3.10" | |
fail-fast: false | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: 17 | |
- uses: gradle/actions/setup-gradle@v3 | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Install dependencies | |
run: ./metadata-ingestion/scripts/install_deps.sh | |
- name: Install prefect package | |
run: ./gradlew :metadata-ingestion-modules:prefect-plugin:lint :metadata-ingestion-modules:prefect-plugin:testQuick | |
- name: pip freeze show list installed | |
if: always() | |
run: source metadata-ingestion-modules/prefect-plugin/venv/bin/activate && uv pip freeze | |
- uses: actions/upload-artifact@v3 | |
if: ${{ always() && matrix.python-version == '3.10'}} | |
with: | |
name: Test Results (Prefect Plugin ${{ matrix.python-version}}) | |
path: | | |
**/build/reports/tests/test/** | |
**/build/test-results/test/** | |
**/junit.*.xml | |
!**/binary/** | |
- name: Upload coverage to Codecov | |
if: always() | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: . | |
fail_ci_if_error: false | |
flags: prefect,prefect-${{ matrix.extra_pip_extras }} | |
name: pytest-prefect-${{ matrix.python-version }} | |
verbose: true | |
event-file: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Event File | |
path: ${{ github.event_path }} |