Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5775966

Browse files
committedSep 2, 2020
add Travis config
1 parent 94993f2 commit 5775966

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed
 

‎.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
^.*\.Rproj$
22
^\.Rproj\.user$
33
^README\.Rmd$
4+
^\.httr-oauth$
5+
^\.travis\.yml$

‎.travis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
2+
3+
language: R
4+
cache: packages
5+
6+
r:
7+
- oldrel
8+
- release
9+
- devel
10+
11+
warnings_are_errors: true

‎NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# codecheck 0.0.0.90xx
2+
3+
* Added tests using `tinytest`
4+
* Added a `NEWS.md` file to track changes to the package.

‎README.Rmd

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ knitr::opts_chunk$set(
1717

1818
<!-- badges: start -->
1919
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
20+
[![Travis build status](https://travis-ci.com/nuest/codecheck.svg?branch=master)](https://travis-ci.com/nuest/codecheck)
2021
<!-- badges: end -->
2122

2223
`codecheck` is an assistant for conducting CODECHECKs, written in the R language and distributed as an R package.

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
[![Lifecycle:
99
experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
10+
[![Travis build
11+
status](https://travis-ci.com/nuest/codecheck.svg?branch=master)](https://travis-ci.com/nuest/codecheck)
1012
<!-- badges: end -->
1113

1214
`codecheck` is an assistant for conducting CODECHECKs, written in the R

0 commit comments

Comments
 (0)
Please sign in to comment.