Skip to content

Commit 3b342f0

Browse files
committed
Merge branch 'r-0.0-2' into production
2 parents bfa250e + d28bb32 commit 3b342f0

File tree

3 files changed

+72
-5
lines changed

3 files changed

+72
-5
lines changed

.travis.yml

Lines changed: 66 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,69 @@
1+
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
2+
3+
# Header
14
language: r
5+
sudo: false
6+
dist: trusty
27
cache: packages
3-
warnings_are_errors: false
4-
r_packages:
5-
- covr
8+
latex: false
9+
10+
#env
11+
env:
12+
global:
13+
- _R_CHECK_FORCE_SUGGESTS_=false
14+
- MAKEFLAGS="-j 2"
15+
16+
#addons
17+
addons:
18+
apt:
19+
packages:
20+
- libmagick++-dev
21+
- libssh2-1-dev
22+
23+
#matrix: 3x Linux, 1x OS X
24+
matrix:
25+
include:
26+
- r: release
27+
env:
28+
- BUILD_PKGDOWN=true
29+
- r: oldrel
30+
- r: devel
31+
- os: osx
32+
osx_image: xcode7.3
33+
r: release
34+
latex: false
35+
36+
#notifications
37+
notifications:
38+
email:
39+
on_success: change
40+
on_failure: change
41+
42+
#before_script
43+
before_script:
44+
- R -q -e 'install.packages("remotes"); remotes::install_github("ropenscilabs/tic"); tic::prepare_all_stages()'
45+
46+
#after_success
647
after_success:
7-
- Rscript -e 'library(covr); codecov()'
48+
- R -q -e 'tic::after_success()'
49+
50+
#deploy // https://github.com/travis-ci/travis-build/blob/85ef7108/lib/travis/build/addons/deploy/script.rb#L100-L107
51+
deploy:
52+
provider: script
53+
script: R -q -e 'tic::deploy()'
54+
on:
55+
all_branches: true
56+
57+
# Custom parts:
58+
59+
#r_github_packages
60+
r_github_packages:
61+
62+
#r_packages
63+
r_packages:
64+
65+
#services
66+
services:
67+
68+
#before_install
69+
before_install:

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: styler
22
Title: Non-invasive Pretty Printing of R code
3-
Version: 0.0-1
3+
Version: 0.0-2
44
Authors@R: person("Kirill", "Müller", role = c("aut", "cre"), email = "[email protected]")
55
Description:
66
Pretty-prints R code without changing the user's formatting intent.

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## styler 0.0-2 (2017-06-15)
2+
3+
- Technical release for creation of pkgdown documentation.
4+
5+
16
## styler 0.0-1 (2017-06-15)
27

38
Initial release, work in progress.

0 commit comments

Comments
 (0)