mirror of https://github.com/nasa/ziggy.git
22 lines
577 B
YAML
22 lines
577 B
YAML
# This is a basic workflow that is manually triggered
|
|
|
|
name: Manual workflow
|
|
|
|
# Controls when the action will run. Workflow runs when manually triggered using the UI
|
|
# or API.
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel.
|
|
jobs:
|
|
Validate-CITATION-cff:
|
|
name: Validate CITATION.cff
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: cff-validator
|
|
uses: dieghernan/cff-validator@v2.3
|