Merge branch 'main' into optimized_emd_doc #347
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
# workflow that performs a validity check of CITATION.cff file | |
# author: Abel Siqueira, GH: @abelsiqueira | |
name: CFF File Validator | |
on: | |
push: | |
paths: | |
- CITATION.cff | |
schedule: | |
- cron: '0 0 1 * *' | |
jobs: | |
validate: | |
name: "validate" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out a copy of the repository | |
uses: actions/checkout@v4 | |
- name: Check whether the citation metadata from CITATION.cff is valid | |
uses: citation-file-format/[email protected] | |
with: | |
args: "--validate" |