File size: 425 Bytes
d90b3a8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
name: "Workflow Dispatch CPU Tests"
on:
workflow_dispatch:
inputs:
ref:
description: 'Target ref / SHA to run tests against'
required: true
default: 'main'
jobs:
run-tests:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Run CPU tests
uses: ./tests/cpu_tests
with:
target_test_ref: ${{ inputs.ref }}
|