File tree 7 files changed +39
-10
lines changed
7 files changed +39
-10
lines changed Original file line number Diff line number Diff line change 4
4
^Meta$
5
5
^data-raw$
6
6
^README\.Rmd$
7
- ^\.travis\.yml $
7
+ ^\.github $
Original file line number Diff line number Diff line change
1
+ * .html
Original file line number Diff line number Diff line change
1
+ # For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
2
+ # https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ - master
8
+ pull_request :
9
+ branches :
10
+ - main
11
+ - master
12
+
13
+ name : R-CMD-check
14
+
15
+ jobs :
16
+ R-CMD-check :
17
+ runs-on : macOS-latest
18
+ env :
19
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
20
+ steps :
21
+ - uses : actions/checkout@v2
22
+ - uses : r-lib/actions/setup-r@v1
23
+ - name : Install dependencies
24
+ run : |
25
+ install.packages(c("remotes", "rcmdcheck"))
26
+ remotes::install_deps(dependencies = TRUE)
27
+ shell : Rscript {0}
28
+ - name : Check
29
+ run : |
30
+ options(crayon.enabled = TRUE)
31
+ rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
32
+ shell : Rscript {0}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -33,3 +33,5 @@ Suggests:
33
33
testthat,
34
34
ggplot2
35
35
VignetteBuilder: knitr
36
+ URL: https://github.com/mitsuoxv/tqr
37
+ BugReports: https://github.com/mitsuoxv/tqr/issues
Original file line number Diff line number Diff line change @@ -10,10 +10,8 @@ editor_options:
10
10
chunk_output_type : console
11
11
---
12
12
13
- <!-- README.md is generated from README.Rmd. Please edit that file -->
14
-
15
13
<!-- badges: start -->
16
- [ ![ Travis build status ] ( https://travis-ci.org /mitsuoxv/tqr.svg?branch=master )] ( https://travis-ci.org /mitsuoxv/tqr )
14
+ [ ![ R-CMD-check ] ( https://github.com /mitsuoxv/tqr/workflows/R-CMD-check/badge .svg )] ( https://github.com /mitsuoxv/tqr/actions )
17
15
<!-- badges: end -->
18
16
19
17
``` {r, include = FALSE}
Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ Mitsuo Shiota
31
31
package] ( #cal_factory_xts-function-factory-for-calculation-utilizing-xts-package )
32
32
33
33
<!-- README.md is generated from README.Rmd. Please edit that file -->
34
+
34
35
<!-- badges: start -->
35
36
36
- [ ![ Travis build
37
- status] ( https://travis-ci.org/mitsuoxv/tqr.svg?branch=master )] ( https://travis-ci.org/mitsuoxv/tqr )
37
+ [ ![ R-CMD-check] ( https://github.com/mitsuoxv/tqr/workflows/R-CMD-check/badge.svg )] ( https://github.com/mitsuoxv/tqr/actions )
38
38
<!-- badges: end -->
39
39
40
40
Updated: 2021-03-21
You can’t perform that action at this time.
0 commit comments