Skip to content

DO NOT SQUASH Merge main into release #3471

DO NOT SQUASH Merge main into release

DO NOT SQUASH Merge main into release #3471

Workflow file for this run

name: Test pull request
on:
pull_request:
types: [ opened, synchronize, reopened, edited ]
jobs:
test:
uses: ./.github/workflows/core.yml
with:
source_ref: ${{ github.ref }}
target_branch: ${{ github.base_ref }}
# Only run macOS tests if the PR is labelled 'macOS'
test_macos: ${{ contains(github.event.pull_request.labels.*.name, 'macOS') }}
# Only run GPU tests if the PR is labelled 'gpu'
test_gpu: ${{ contains(github.event.pull_request.labels.*.name, 'gpu') }}
secrets: inherit