Skip to content

Commit

Permalink
Create CITATION check action (#5)
Browse files Browse the repository at this point in the history
* Create CITATION check action

* Fix formatting and run on pushes to main
  • Loading branch information
NeuroShepherd authored Nov 29, 2024
1 parent 5d4f9e3 commit 939f317
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/citation-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
workflow_dispatch:
push:
branches: main
paths:
- CITATION.cff

name: CITATION.cff
jobs:
Validate-CITATION-cff:
runs-on: ubuntu-latest
name: Validate CITATION.cff
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Validate CITATION.cff
uses: dieghernan/cff-validator@v3

0 comments on commit 939f317

Please sign in to comment.