mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
410 B
YAML
19 lines
410 B
YAML
name: cffconvert
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- CITATION.cff
|
|
|
|
jobs:
|
|
validate:
|
|
name: "validate"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out a copy of the repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Check whether the citation metadata from CITATION.cff is valid
|
|
uses: citation-file-format/cffconvert-github-action@2.0.0
|
|
with:
|
|
args: "--validate"
|