-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small updates to Readme, description and test coverage
- Loading branch information
Showing
5 changed files
with
45 additions
and
27 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 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 | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
|
||
name: test-coverage | ||
|
||
jobs: | ||
test-coverage: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v1 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v1 | ||
with: | ||
extra-packages: covr | ||
|
||
- name: Test coverage | ||
run: covr::codecov() | ||
shell: Rscript {0} |
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,11 +7,11 @@ Authors@R: | |
role = c("aut", "cre"), | ||
email = "[email protected]") | ||
Description: Perform a mail merge (mass email) using the message defined in | ||
markdown, the recipients in a csv, and gmail as the mailing engine. With | ||
this package you can parse markdown documents as the body of email, and the | ||
'yaml' header to specify the subject line of the email. Any '{}' braces in | ||
the email will be encoded with 'glue::glue()'. You can preview the email in | ||
the RStudio viewer pane, and send (draft) email using 'gmailr'. | ||
markdown, the recipients in a 'csv' file, and gmail as the mailing engine. | ||
With this package you can parse markdown documents as the body of email, and | ||
the 'yaml' header to specify the subject line of the email. Any '{}' braces | ||
in the email will be encoded with 'glue::glue()'. You can preview the email | ||
in the RStudio viewer pane, and send (draft) email using 'gmailr'. | ||
License: MIT + file LICENSE | ||
URL: https://andrie.github.io/mailmerge/, https://github.com/andrie/mailmerge | ||
BugReports: https://github.com/andrie/mailmerge/issues | ||
|
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,11 @@ | ||
## Fixes CRAN review comments | ||
## Small updates and bug fixes | ||
|
||
During CRAN review, two issues were highlight, both are now fixed: | ||
|
||
* Use non-directional quote in the DESCRIPTION file | ||
* Document \value for pipe.Rd | ||
No notes or warnings. | ||
|
||
## Test environments | ||
|
||
* local R installation, R 4.0.3 | ||
* ubuntu 16.04 (on travis-ci), R 4.0.3 | ||
* win-builder (devel) | ||
|
||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 1 note | ||
* local R installation, R 4.1.1 | ||
* ubuntu 18.04 (on Github Actions), with R-oldrel-4 through R-devel | ||
* Windows latest on Github actions | ||
* MacOS latest on Github actions | ||
|
||
* This is a new release. |