On-Demand PR Test #62
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: On-Demand PR Test | |
on: | |
workflow_dispatch: | |
inputs: | |
pr: | |
description: 'PR Number' | |
type: string | |
required: true | |
comment-id: | |
description: 'Comment ID (Optional)' | |
type: string | |
required: false | |
env: | |
AIRBYTE_ANALYTICS_ID: ${{ vars.AIRBYTE_ANALYTICS_ID }} | |
jobs: | |
start-workflow: | |
name: Append 'Starting' Comment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create URL to the run output | |
id: vars | |
run: echo "run-url=https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" >> $GITHUB_OUTPUT | |
- name: Append comment with job run link | |
id: first-comment-action | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
comment-id: ${{ github.event.inputs.comment-id }} | |
issue-number: ${{ github.event.inputs.pr }} | |
body: | | |
> PR test job started... [Check job output.][1] | |
[1]: ${{ steps.vars.outputs.run-url }} | |
# This is copied from the `python_pytest.yml` file. | |
# Only the first two steps of the job are different, and they check out the PR's branch. | |
pytest-on-demand: | |
name: On-Demand PR Pytest (All, Python ${{ matrix.python-version }}, ${{ matrix.os }}) | |
needs: [start-workflow] | |
strategy: | |
matrix: | |
python-version: [ | |
'3.10', | |
'3.11', | |
] | |
os: [ | |
Ubuntu, | |
Windows, | |
] | |
fail-fast: false | |
runs-on: "${{ matrix.os }}-latest" | |
env: | |
# Enforce UTF-8 encoding so Windows runners don't fail inside the connector code. | |
# TODO: See if we can fully enforce this within PyAirbyte itself. | |
PYTHONIOENCODING: utf-8 | |
steps: | |
# Custom steps to fetch the PR and checkout the code: | |
- name: Checkout PR | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout PR (${{ github.event.inputs.pr }}) | |
uses: dawidd6/action-checkout-pr@v1 | |
with: | |
pr: ${{ github.event.inputs.pr }} | |
# Same as the `python_pytest.yml` file: | |
- name: Set up Poetry | |
uses: Gr1N/setup-poetry@v9 | |
with: | |
poetry-version: "1.7.1" | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'poetry' | |
- name: Install dependencies | |
run: poetry install | |
- name: Run Pytest | |
timeout-minutes: 60 | |
env: | |
GCP_GSM_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS }} | |
run: > | |
poetry run pytest | |
--verbose | |
-m "not super_slow" | |
log-success-comment: | |
name: Append 'Success' Comment | |
needs: [pytest-on-demand] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Append success comment | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{ github.event.inputs.pr }} | |
comment-id: ${{ github.event.inputs.comment-id }} | |
reactions: hooray | |
body: | | |
> ✅ Tests passed. | |
log-failure-comment: | |
name: Append 'Failure' Comment | |
# This job will only run if the workflow fails | |
needs: [pytest-on-demand, start-workflow] | |
if: always() && needs.pytest-on-demand.result == 'failure' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Append failure comment | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{ github.event.inputs.pr }} | |
comment-id: ${{ github.event.inputs.comment-id }} | |
reactions: confused | |
body: | | |
> ❌ Tests failed. |