We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be9aa2c commit c6b02adCopy full SHA for c6b02ad
.github/workflows/status-check.yaml
@@ -14,7 +14,14 @@ jobs:
14
steps:
15
- name: checkout code
16
uses: actions/checkout@v4
17
+ - name: Test changed source files
18
+ id: changed-files
19
+ uses: tj-actions/changed-files@v39
20
+ with:
21
+ files: examples/**
22
- name: validate coding style and functionality
23
+ if: ${{ steps.changed-files.outputs.any_changed == 'true' ||
24
+ github.event_name == 'workflow_dispatch' }}
25
run: |
26
sudo apt-get install -q -y clang-format-12
27
sudo apt-get install -q -y cppcheck
0 commit comments