Check if CITATION.cff is still valid #4
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
name: "Valid CITATION.cff" | |
# Name of this action (else will name after the commits) | |
run-name: Check if CITATION.cff is still valid | |
# Source: https://github.com/marketplace/actions/cff-validator | |
on: | |
push: | |
paths: | |
- CITATION.cff | |
workflow_dispatch: | |
jobs: | |
Validate-CITATION-cff: | |
runs-on: ubuntu-latest | |
name: Validate CITATION.cff | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Validate CITATION.cff | |
uses: dieghernan/cff-validator@v3 |