-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4752 from kevinmatthes/feature/cff
[Documentation] Create CITATION.cff
- Loading branch information
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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/[email protected] | ||
with: | ||
args: --validate |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Parser settings. | ||
cff-version: 1.2.0 | ||
message: Please cite this crate using these information. | ||
|
||
# Version information. | ||
date-released: 2023-02-28 | ||
version: 4.1.8 | ||
|
||
# Project information. | ||
abstract: A full featured, fast Command Line Argument Parser for Rust | ||
authors: | ||
- alias: kbknapp | ||
family-names: Knapp | ||
given-names: Kevin B. | ||
- name: The Clap Community | ||
license: | ||
- Apache-2.0 | ||
- MIT | ||
repository-artifact: https://crates.io/crates/clap | ||
repository-code: https://github.com/clap-rs/clap | ||
title: clap | ||
url: https://docs.rs/clap |
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