Skip to content

Commit

Permalink
Fix #55, Add workflow duplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Oct 22, 2021
1 parent 2b24897 commit 2be5d19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'

format-check:
needs: check-for-duplicates
if: ${{ needs.check-for-duplicates.outputs.should_skip != 'true' }}
name: Run format check
needs: check-for-duplicates
runs-on: ubuntu-18.04
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'

cpp-check:
needs: check-for-duplicates
if: ${{ needs.check-for-duplicates.outputs.should_skip != 'true' }}
name: Run cppcheck
needs: check-for-duplicates
runs-on: ubuntu-18.04
Expand Down

0 comments on commit 2be5d19

Please sign in to comment.