We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a55b557 commit 29f3e0bCopy full SHA for 29f3e0b
.github/workflows/clang-tidy.yml
@@ -13,6 +13,7 @@ on:
13
pull_request:
14
schedule:
15
- cron: '0 0 * * 0'
16
+ workflow_dispatch:
17
18
permissions:
19
contents: read
@@ -75,11 +76,11 @@ jobs:
75
76
make -C cmake.output/test cmake_pch.hxx.pch
77
78
- name: Clang-Tidy
- if: github.event.schedule == ''
79
+ if: ${{ github.event.schedule == '' && github.event_name != 'workflow_dispatch' }}
80
run: |
81
cmake --build cmake.output --target run-clang-tidy 2> /dev/null
82
83
- name: Clang Static Analyzer
- if: github.event.schedule != ''
84
+ if: ${{ github.event.schedule != '' || github.event_name == 'workflow_dispatch' }}
85
86
cmake --build cmake.output --target run-clang-tidy-csa 2> /dev/null
0 commit comments