Merge branch 'main' into esmf_args #7
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: ci-citation | |
on: | |
pull_request: | |
paths: | |
- "CITATION.cff" | |
push: | |
paths: | |
- "CITATION.cff" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
name: "validate" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "check CITATION.cff" | |
uses: citation-file-format/[email protected] | |
with: | |
args: "--validate" |