Add workflow_dispatch with Google Test filter

Add the workflow_dispatch trigger to the test.yaml workflow. Includes an
input for an optional Google Test filter pattern.
This commit is contained in:
Florian Albrechtskirchinger 2025-02-16 09:44:15 +01:00
parent 233f0fb1b8
commit 22406ef337
No known key found for this signature in database
GPG Key ID: 9C4E2AE92D3A9595

View File

@ -1,6 +1,15 @@
name: test name: test
on: [push, pull_request] on:
push:
pull_request:
workflow_dispatch:
inputs:
gtest_filter:
description: 'Google Test filter'
env:
GTEST_FILTER: ${{ github.event.inputs.gtest_filter || '*' }}
jobs: jobs:
ubuntu: ubuntu: