-
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.
- Loading branch information
Showing
9 changed files
with
424 additions
and
407 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,20 @@ | ||
name: pkgcheck | ||
|
||
# This will cancel running jobs once a new run is triggered | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
# Manually trigger the Action under Actions/pkgcheck | ||
workflow_dispatch: | ||
# Run on every push to main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
pkgcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: ropensci-review-tools/pkgcheck-action@main |
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
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
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,18 +1,21 @@ | ||
Package: fastMatMR | ||
Title: What the Package Does (One Line, Title Case) | ||
Title: "Reads and writes matrix market files" | ||
Version: 0.0.0.9000 | ||
Authors@R: | ||
person("Rohit", "Goswami", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-2393-8056")) | ||
Description: What the package does (one paragraph). | ||
Description: """ | ||
fastMatMR is a set of bindings to the fast_matrix_market cpp library which is | ||
used to read and write matrix market compatible files. | ||
""" | ||
License: MIT + file LICENSE | ||
SystemRequirements: C++17 | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
LinkingTo: | ||
cpp11 | ||
Imports: | ||
Imports: | ||
cpp11 | ||
Suggests: | ||
Suggests: | ||
Matrix |
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
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
Oops, something went wrong.