This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #22
- Loading branch information
Showing
2 changed files
with
29 additions
and
16 deletions.
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 |
---|---|---|
|
@@ -7,18 +7,26 @@ | |
(source | ||
(github ocurrent/opam-ci-check)) | ||
|
||
(authors "Author Name") | ||
(authors | ||
"Puneeth Chaganti <[email protected]>" | ||
"Shon Feder <[email protected]>") | ||
|
||
(maintainers "Maintainer Name") | ||
(maintainers | ||
"Puneeth Chaganti <[email protected]>" | ||
"Shon Feder <[email protected]>") | ||
|
||
(license LICENSE) | ||
; TODO: Add a license field | ||
;(license LICENSE) | ||
|
||
(documentation https://url/to/documentation) | ||
(documentation | ||
https://www.ocurrent.org/opam-ci-check/opam-ci-check/index.html) | ||
|
||
(package | ||
(name opam-ci-check) | ||
(synopsis "A short synopsis") | ||
(description "A longer description") | ||
(synopsis | ||
"CLI tool that tests whether packages are publishable on the opam repository.") | ||
(description | ||
"opam-ci-check is used in the opam repo CI and can be used locally and in other CI pipelines to test the deliverability of packages.") | ||
(depends | ||
(ocaml | ||
(>= 4.14.0)) | ||
|
@@ -31,6 +39,4 @@ | |
(mula | ||
(>= 0.1.2))) | ||
(tags | ||
(topics "to describe" your project))) | ||
|
||
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project | ||
("opam" "ci" "lint" "reverse dependency"))) |
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 |
---|---|---|
@@ -1,13 +1,20 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "A short synopsis" | ||
description: "A longer description" | ||
maintainer: ["Maintainer Name"] | ||
authors: ["Author Name"] | ||
license: "LICENSE" | ||
tags: ["topics" "to describe" "your" "project"] | ||
synopsis: | ||
"CLI tool that tests whether packages are publishable on the opam repository." | ||
description: | ||
"opam-ci-check is used in the opam repo CI and can be used locally and in other CI pipelines to test the deliverability of packages." | ||
maintainer: [ | ||
"Puneeth Chaganti <[email protected]>" | ||
"Shon Feder <[email protected]>" | ||
] | ||
authors: [ | ||
"Puneeth Chaganti <[email protected]>" | ||
"Shon Feder <[email protected]>" | ||
] | ||
tags: ["opam" "ci" "lint" "reverse dependency"] | ||
homepage: "https://github.com/ocurrent/opam-ci-check" | ||
doc: "https://url/to/documentation" | ||
doc: "https://www.ocurrent.org/opam-ci-check/opam-ci-check/index.html" | ||
bug-reports: "https://github.com/ocurrent/opam-ci-check/issues" | ||
depends: [ | ||
"ocaml" {>= "4.14.0"} | ||
|