fix: formatting issues #2379
Workflow file for this run
This file contains hidden or 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: "SYCL Intel Test" | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| merge_group: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| inputs: | |
| DPCPP_VERSION: | |
| description: "DPCPP version to use" | |
| type: string | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Quick validation for PRs - single configuration | |
| test-pr: | |
| if: github.event_name == 'pull_request' || github.event_name == 'merge_group' | |
| uses: ./.github/workflows/intel_test_reusable.yml | |
| with: | |
| gpu: '["PVC", "BMG"]' | |
| compiler: '["RELEASE"]' | |
| intel_graphics: '["ROLLING"]' | |
| DPCPP_VERSION: ${{ inputs.DPCPP_VERSION }} | |
| # Full testing for pushes - 4 configurations | |
| test-push: | |
| if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
| uses: ./.github/workflows/intel_test_reusable.yml | |
| with: | |
| compiler: '["RELEASE", "NIGHTLY"]' | |
| gpu: '["PVC", "BMG"]' | |
| intel_graphics: '["ROLLING", "STAGING"]' | |
| DPCPP_VERSION: ${{ inputs.DPCPP_VERSION }} |