[CI] Move tests from CircleCI to GitHub #17
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: Vizro QA tests trigger | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: | ||
- main | ||
env: | ||
PYTHONUNBUFFERED: 1 | ||
FORCE_COLOR: 1 | ||
jobs: | ||
vizro-qa-test-trigger-fork: | ||
if: ${{ github.event.pull_request.head.repo.fork }} | ||
name: Vizro QA ${{ matrix.label }} trigger | ||
runs-on: ubuntu-latest | ||
matrix: | ||
Check failure on line 19 in .github/workflows/vizro-qa-tests-trigger.yml GitHub Actions / Vizro QA tests triggerInvalid workflow file
|
||
include: | ||
- label: integration tests | ||
- label: notebooks tests | ||
steps: | ||
- name: Passed fork step | ||
run: echo "Success!" | ||
vizro-qa-tests-trigger: | ||
if: ${{ ! github.event.pull_request.head.repo.fork }} | ||
name: Vizro QA ${{ matrix.label }} trigger | ||
runs-on: ubuntu-latest | ||
matrix: | ||
include: | ||
- label: integration tests | ||
file: ${{ secrets.VIZRO_QA_INTEGRATION_TESTS_WORKFLOW }} | ||
- label: notebooks test | ||
file: ${{ secrets.VIZRO_QA_NOTEBOOKS_TESTS_WORKFLOW }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Tests trigger | ||
run: | | ||
export INPUT_OWNER=${{ secrets.VIZRO_QA_ORG }} | ||
export INPUT_REPO=${{ secrets.VIZRO_QA_REPO }} | ||
export INPUT_WORKFLOW_FILE_NAME=${{ matrix.label }} | ||
export INPUT_GITHUB_TOKEN=${{ secrets.VIZRO_SVC_PAT }} | ||
export INPUT_REF=${{ github.head_ref }} | ||
tools/trigger-workflow-and-wait.sh |