Bump splink from 3.9.4 to 4.0.3 in /python #25
Workflow file for this run
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: Publish Python 🐍 distribution 📦 to TestPyPI and run integration tests | |
on: | |
pull_request: | |
jobs: | |
build-n-publish: | |
name: Build project and publish to TestPyPI | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: [3.8.10] | |
spark: [3.2.1] | |
environment: | |
name: testpypi | |
url: https://test.pypi.org/p/databricks-arc/ | |
permissions: | |
id-token: write # IMPORTANT: mandatory for trusted publishing | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: build jar | |
uses: ./.github/actions/scala_build | |
- name: build python | |
uses: ./.github/actions/python_build | |
- name: Publish a Python distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.TEST_PYPI_TOKEN }} | |
packages-dir: python/dist/ | |
repository-url: https://test.pypi.org/legacy/ | |
run-aws-test: | |
name: run aws integration tests | |
needs: build-n-publish | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: aws integration tests | |
with: | |
deployment_token: ${{ secrets.DEPLOYMENT_TARGET_TOKEN_AWS }} | |
uses: ./.github/actions/integration_tests_aws | |
run-gcp-test: | |
name: run gcp integration tests | |
needs: build-n-publish | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: gcp integration tests | |
with: | |
deployment_token: ${{ secrets.DEPLOYMENT_TARGET_TOKEN_GCP }} | |
uses: ./.github/actions/integration_tests_gcp | |
run-msa-test: | |
name: run msa integration tests | |
needs: build-n-publish | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: msa integration tests | |
with: | |
deployment_token: ${{ secrets.DEPLOYMENT_TARGET_TOKEN_MSA }} | |
uses: ./.github/actions/integration_tests_msa |