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:
parent
233f0fb1b8
commit
22406ef337
11
.github/workflows/test.yaml
vendored
11
.github/workflows/test.yaml
vendored
@ -1,6 +1,15 @@
|
||||
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:
|
||||
ubuntu:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user