-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
7b1385f
commit 3749fea
Showing
93 changed files
with
588 additions
and
389 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 |
---|---|---|
|
@@ -37,3 +37,5 @@ | |
^pkgdown\.yml$ | ||
^\.imgbotconfig$ | ||
^\.lintr$ | ||
^CODE_OF_CONDUCT\.md$ | ||
^CONTRIBUTING\.md$ |
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,3 +13,4 @@ updates: | |
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
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 |
---|---|---|
|
@@ -56,3 +56,4 @@ jobs: | |
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
|
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,30 +1,71 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
# lintr provides static code analysis for R. | ||
# It checks for adherence to a given style, | ||
# identifying syntax errors and possible semantic issues, | ||
# then reports them to you so you can take action. | ||
# More details at https://lintr.r-lib.org/ | ||
|
||
name: lintr | ||
|
||
on: | ||
push: | ||
branches: [main, master] | ||
branches: | ||
- main | ||
- master | ||
workflow_dispatch: | ||
pull_request: | ||
branches: [main, master] | ||
# The branches below must be a subset of the branches above | ||
branches: | ||
- main | ||
- master | ||
schedule: | ||
- cron: '56 11 * * 5' | ||
|
||
name: lint | ||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
lint: | ||
lintr: | ||
name: Run lintr scanning | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: read # for checkout to fetch code | ||
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | ||
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
- name: Setup R | ||
uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
- name: Setup lintr | ||
uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::lintr | ||
needs: lint | ||
extra-packages: | | ||
local::. | ||
any::lintr | ||
- name: Lint | ||
run: lintr::lint_package() | ||
- name: Run lintr | ||
run: | | ||
# Lintr package | ||
out <- lintr::lint_package() | ||
# Create SARIF report | ||
lintr::sarif_output(out, "lintr-results.sarif") | ||
# Display | ||
out | ||
shell: Rscript {0} | ||
continue-on-error: true | ||
|
||
- name: Upload analysis results to GitHub | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: lintr-results.sarif | ||
wait-for-processing: true | ||
|
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,21 @@ | ||
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: | ||
|
||
jobs: | ||
pkgcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: ropensci-review-tools/pkgcheck-action@main | ||
with: | ||
summary-only: false | ||
post-to-issue: true | ||
append-to-issue: true | ||
|
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
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ jobs: | |
|
||
steps: | ||
- uses: easimon/wipe-cache@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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
linters: linters_with_defaults() # see vignette("lintr") | ||
exclusions: list( | ||
"data-raw" | ||
) | ||
encoding: "UTF-8" | ||
exclusions: list("data-raw") |
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,46 @@ | ||
# CONTRIBUTING | ||
|
||
## Fixing typos | ||
|
||
Small typos or grammatical errors in documentation may be edited directly using | ||
the GitHub web interface, so long as the changes are made in the *source* file. | ||
|
||
- YES ✔️: you edit a roxygen comment in a `.R` file below `R/`. | ||
- NO ❌: you edit an `.Rd` file below `man/`. | ||
|
||
## Prerequisites | ||
|
||
Before you make a substantial pull request, you should always file an issue and | ||
make sure someone from the team agrees that it's a problem. If you've found a | ||
bug, create an associated issue and illustrate the bug with a minimal | ||
[reprex](https://www.tidyverse.org/help/#reprex). | ||
|
||
## Pull request process | ||
|
||
- We recommend that you create a Git branch for each pull request (PR). | ||
- Look at the `R-CMD-check` build status before. After making changes, run | ||
`devtools::check()` and ensure no new Notes, Warnings or Errors are | ||
appearing. | ||
- We recommend the tidyverse [style guide](http://style.tidyverse.org). We | ||
also use the [styler](https://CRAN.R-project.org/package=styler) package to | ||
apply these styles, but please **don't restyle code that has nothing to do | ||
with your PR**. | ||
- We use [roxygen2](https://cran.r-project.org/package=roxygen2). | ||
- We use [testthat](https://cran.r-project.org/package=testthat). | ||
Contributions with test cases included are easier to accept. | ||
- For user-facing changes, add a bullet to the top of `NEWS.md` below the | ||
current development version header describing the changes made followed by | ||
your GitHub username, and links to relevant issue(s)/PR(s). | ||
|
||
## Prefer to Email? | ||
|
||
Email the person listed as maintainer in the `DESCRIPTION` file of this repo. | ||
|
||
Though note that private discussions over email don't help others - of course | ||
email is totally warranted if it's a sensitive problem of any kind. | ||
|
||
## Thanks for contributing! | ||
|
||
This contributing guide is adapted from the tidyverse contributing guide | ||
available at | ||
<https://raw.githubusercontent.com/r-lib/usethis/master/inst/templates/tidy-contributing.md> |
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
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.