Skip to content

Commit

Permalink
[CI] Always run all linter steps
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Aug 6, 2023
1 parent 2a0e4e9 commit a23f2da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/linters.yml
Expand Up @@ -21,6 +21,7 @@ jobs:
- name: Check example keywords
run: python3 doc/example-keywords.py compare
- name: Get changed C++ files
if: success() || failure()
id: changed-cxx-files
uses: tj-actions/changed-files@v37
with:
Expand All @@ -29,7 +30,7 @@ jobs:
**.cpp
# Comment blocks starting with "/*!" do not support autobrief
- name: Check for problematic Doxygen comment blocks
if: steps.changed-cxx-files.outputs.any_changed == 'true'
if: (success() || failure()) && steps.changed-cxx-files.outputs.any_changed == 'true'
run: |
RETCODE=0
for file in ${{ steps.changed-cxx-files.outputs.all_changed_files }}; do
Expand Down

0 comments on commit a23f2da

Please sign in to comment.