Skip to content

Attempting CI migration. Testing fix. #3

Attempting CI migration. Testing fix.

Attempting CI migration. Testing fix. #3

name: Reusable PR testing for mac and linux
on:
workflow_call:
inputs:
targets:
type: string
description: "Make and CTest targets. If not specified, everything is tested"
required: false
jobs:
handle-syncwith:
name: Call Reusable SyncWith Handler
uses: .github/workflows/reusable-handle-syncwith.yml

Check failure on line 14 in .github/workflows/pull-request-action.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull-request-action.yml

Invalid workflow file

invalid value workflow reference: no version specified
with:
ci-cd-ref: 'v1.2.0'
secrets: inherit
matrix-test-linux:
name: Linux Reusable Crypto3 Testing
needs:
- handle-syncwith
uses: .github/workflows/reusable-crypto3-testing-linux.yml
secrets: inherit
with:
submodules-refs: ${{ needs.handle-syncwith.outputs.prs-refs }}
targets: ${{ inputs.targets }}
matrix-test-mac:
name: Mac Reusable Crypto3 Testing
needs:
- handle-syncwith
uses: .github/workflows/reusable-crypto3-testing-mac.yml
secrets: inherit
with:
submodules-refs: ${{ needs.handle-syncwith.outputs.prs-refs }}
targets: ${{ inputs.targets }}