Schema updates for current and upcoming asdf changes #1736
Workflow file for this run
This file contains hidden or 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: CITATION.cff | |
| on: | |
| push: | |
| paths: | |
| - CITATION.cff | |
| pull_request: | |
| release: | |
| jobs: | |
| Validate-CITATION-cff: | |
| name: Validate CITATION.cff | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pip | |
| key: pip-cffconvert-0 | |
| - name: pip installs | |
| run: pip install git+https://github.com/citation-file-format/cffconvert.git | |
| - name: run cffconvert validate | |
| run: cffconvert --validate |