Skip to content

Commit

Permalink
add allow failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmehl committed Jun 22, 2023
1 parent 286e9d8 commit 77df507
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/3rd_party_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,21 @@ on:
jobs:
third-party-lint:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.ignore-failure }}
strategy:
# do not abort the whole test job if one step fails
fail-fast: false
#
matrix:
repo: ["fsfe/reuse-example", "spdx/license-list-XML", "curl/curl", "SAP/openui"]
repo: ["fsfe/reuse-example", "curl/curl", "SAP/openui5"]
ignore-failure: [false]
# add a repo for which we know it's not compliant
include:
- repo: spdx/license-list-XML
ignore-failure: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit 77df507

Please sign in to comment.