Update versions on main (#2266) #392
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
on: | |
push: | |
paths: | |
- CITATION.cff | |
workflow_dispatch: | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
name: CITATION.cff | |
jobs: | |
Validate-CITATION-cff: | |
runs-on: ubuntu-latest | |
name: Validate CITATION.cff | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install cffconvert | |
run: | | |
python3 -m pip install --user cffconvert | |
- name: Validate CITATION.cff | |
run: | | |
cffconvert --validate --infile CITATION.cff |