Merge remote-tracking branch 'origin/develop' into release/v0.9.0 #27
Workflow file for this run
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
# SPDX-FileCopyrightText: 2022 German Aerospace Center (DLR) | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
# SPDX-FileContributor: Stephan Druskat | |
name: cffconvert | |
on: | |
push: | |
paths: | |
- CITATION.cff | |
jobs: | |
validate: | |
name: "validate" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out a copy of the repository | |
uses: actions/checkout@v2 | |
- name: Check whether the citation metadata from CITATION.cff is valid | |
uses: citation-file-format/cffconvert-github-action@2.0.0 | |
with: | |
args: "--validate" |