Skip to content

Commit

Permalink
Run all jobs even if previous ones fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Skptak committed Aug 1, 2023
1 parent 9c8ffe5 commit 31bdc06
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,32 +110,37 @@ jobs:
path: ${{ matrix.inputs.repository }}

- name: "Formatting Check : ${{ matrix.inputs.repository }}"
if: success() || failure()
uses: ./formatting
with:
path: ${{ matrix.inputs.repository }}
exclude-files: ${{ matrix.inputs.exclude-fles}}
exclude-dirs: ${{matrix.inputs.exclude-dirs}}

- name: "Complexity Check: ${{ matrix.inputs.repository }}"
if: success() || failure()
uses: ./complexity
with:
path: ${{ matrix.inputs.repository }}
# For coreMQTT the code complexity threshold is 10.
horrid_threshold: 10

- name: "Doxygen Build Check ${{ matrix.inputs.repository }}"
if: success() || failure()
uses: ./doxygen
with:
path: ${{ matrix.inputs.repository }}

- name: "Doxygen Zip Check: ${{ matrix.inputs.repository }}"
if: success() || failure()
uses: ./doxygen
with:
path: ${{ matrix.inputs.repository }}
generate_zip: true


- name: "Spelling Check: ${{ matrix.inputs.repository }} "
if: success() || failure()
uses: ./spellings
with:
path: ${{ matrix.inputs.repository }}
Expand Down Expand Up @@ -177,6 +182,7 @@ jobs:
# line-coverage-min: 100

- name: "Memory Statistics Check: ${{ matrix.inputs.repository }}"
if: success() || failure()
uses: ./memory_statistics
with:
path: memory_statistics/test
Expand All @@ -186,12 +192,14 @@ jobs:

- name: "Link Verifier Check: ${{ matrix.inputs.repository }} "
uses: ./link-verifier
if: success() || failure()
with:
path: ${{ matrix.inputs.repository }}
exclude-dirs: complexity,formatting
include-file-types: .c,.html

- name: "Manifest Verifier: ${{ matrix.inputs.repository }}"
if: success() || failure()
uses: ./manifest-verifier
with:
path: ${{ matrix.inputs.repository }}
Expand Down

0 comments on commit 31bdc06

Please sign in to comment.