Fixed behaviour if parameter types
value is empty string, behave th…
#2299
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Github Workflow reuse licensecheck | |
# | |
#SPDX-FileCopyrightText: 2021 Birger Schacht | |
#SPDX-License-Identifier: AGPL-3.0-or-later | |
name: "ReUse License Check" | |
on: | |
push: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
license: | |
name: Check license compliance | |
runs-on: ubuntu-latest | |
# This should not fail the whole workflow run | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: REUSE compliance check | |
uses: fsfe/reuse-action@v2 |