Skip to content

Commit

Permalink
add .github files
Browse files Browse the repository at this point in the history
  • Loading branch information
leeper committed Mar 8, 2018
1 parent 08c9a70 commit 962da14
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 1 deletion.
File renamed without changes.
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE.md
@@ -0,0 +1,25 @@
Please specify whether your issue is about:

- [ ] a possible bug
- [ ] a question about package functionality
- [ ] a suggested code or documentation change, improvement to the code, or feature request

If you are reporting (1) a bug or (2) a question about code, please supply:

- [a fully reproducible example](http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) using a publicly available dataset (or provide your data)
- if an error is occurring, include the output of `traceback()` run immediately after the error occurs
- the output of `sessionInfo()`

Put your code here:

```R
## load package
library("aws.ses")

## code goes here


## session info for your system
sessionInfo()
```

9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,9 @@
Please ensure the following before submitting a PR:

- [ ] if suggesting code changes or improvements, [open an issue](https://github.com/cloudyr/aws.ses/issues/new) first
- [ ] for all but trivial changes (e.g., typo fixes), add your name to [DESCRIPTION](https://github.com/cloudyr/aws.ses/blob/master/DESCRIPTION)
- [ ] for all but trivial changes (e.g., typo fixes), documentation your change in [NEWS.md](https://github.com/cloudyr/aws.ses/blob/master/NEWS.md) with a parenthetical reference to the issue number being addressed
- [ ] if changing documentation, edit files in `/R` not `/man` and run `devtools::document()` to update documentation
- [ ] add code or new test files to [`/tests`](https://github.com/cloudyr/aws.ses/tree/master/tests/testthat) for any new functionality or bug fix
- [ ] make sure `R CMD check` runs without error before submitting the PR

28 changes: 27 additions & 1 deletion .travis.yml
@@ -1,14 +1,40 @@
language: r
sudo: false
cache: packages
matrix:
include:
- os: linux
dist: precise
sudo: false
r_build_args: '--no-build-vignettes'
r_check_args: '--ignore-vignettes --no-examples'
- os: linux
dist: trusty
sudo: required
env: R_CODECOV=true
- os: osx
osx_image: xcode8.2
before_install:
- brew install curl
- brew link --force curl
latex: false
r_build_args: '--no-build-vignettes'
r_check_args: '--ignore-vignettes --no-examples'
- os: osx
osx_image: xcode7.3
latex: false
r_build_args: '--no-build-vignettes'
r_check_args: '--ignore-vignettes --no-examples'
r_packages:
- knitr
- covr
- drat
r_github_packages:
- cloudyr/travisci
after_success:
- Rscript -e 'library("covr");codecov()'
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash
drat.sh
- Rscript -e "travisci::restart_last_build('cloudyr/awspack')"
env:
global:
secure: WMYHZ8ntlvEYoKyLMhnYlFLXFPIqMEf9eR/m1M9wA5X0ixKTF+KvlBp1w4rCdAPjn7/eH+MLVgSguFA9Fpo8Y7FnY0Towx5q3tW//2p6JabVlxJi4IQMNKo05Aeq6zUZo2L0H7nEVKezc1PxqcAWRnA3p++oKw/GrVc7SoLbejg=

0 comments on commit 962da14

Please sign in to comment.