Skip to content

Commit

Permalink
test: Add CFF Validation
Browse files Browse the repository at this point in the history
The CITATION.cff is validated with the official GitHub Action.
  • Loading branch information
kevinmatthes committed Mar 9, 2023
1 parent ee8231c commit b8021a2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
permissions:
contents: none
name: CI
needs: [test, check, docs, rustfmt, clippy]
needs: [test, check, docs, rustfmt, clippy, cffconvert]
runs-on: ubuntu-latest
steps:
- name: Done
Expand Down Expand Up @@ -187,3 +187,15 @@ jobs:
run: make clippy-full
- name: Lint (release)
run: make clippy-release
cffconvert:
name: cffconvert
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: CFF validation
uses: citation-file-format/cffconvert-github-action@2.0.0
with:
args: --validate

0 comments on commit b8021a2

Please sign in to comment.