Connector Integration Tests (Alpha connectors only) #49
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: Connector Integration Tests (Alpha connectors only) | |
# Launches the connector integration tests | |
on: | |
workflow_dispatch: | |
schedule: | |
# 3AM UTC is 5AM EET, 4AM CET, 8PM PST. | |
- cron: "0 3 * * 0" | |
jobs: | |
launch_integration_tests_alpha_only: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout Airbyte | |
uses: actions/checkout@v3 | |
- name: Install Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "17" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install PyYAML requests | |
- name: Launch Integration Tests (Alpha connectors) | |
run: python ./tools/bin/ci_integration_workflow_launcher.py source:alpha destination:alpha | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_PAT_MAINTENANCE_OSS }} |