File tree Expand file tree Collapse file tree 6 files changed +107
-106
lines changed Expand file tree Collapse file tree 6 files changed +107
-106
lines changed Original file line number Diff line number Diff line change
1
+ * .html
Original file line number Diff line number Diff line change
1
+ # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2
+ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
+ on :
4
+ push :
5
+ branches : [main, master]
6
+ pull_request :
7
+ branches : [main, master]
8
+
9
+ name : R-CMD-check
10
+
11
+ jobs :
12
+ R-CMD-check :
13
+ runs-on : ${{ matrix.config.os }}
14
+
15
+ name : ${{ matrix.config.os }} (${{ matrix.config.r }})
16
+
17
+ strategy :
18
+ fail-fast : false
19
+ matrix :
20
+ config :
21
+ - {os: macos-latest, r: 'release'}
22
+ - {os: windows-latest, r: 'release'}
23
+ - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
24
+ - {os: ubuntu-latest, r: 'release'}
25
+ - {os: ubuntu-latest, r: 'oldrel-1'}
26
+
27
+ env :
28
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
29
+ R_KEEP_PKG_SOURCE : yes
30
+ VCR_VERBOSE_ERRORS : true
31
+
32
+ steps :
33
+ - uses : actions/checkout@v3
34
+
35
+ - uses : r-lib/actions/setup-pandoc@v2
36
+
37
+ - uses : r-lib/actions/setup-r@v2
38
+ with :
39
+ r-version : ${{ matrix.config.r }}
40
+ http-user-agent : ${{ matrix.config.http-user-agent }}
41
+ use-public-rspm : true
42
+
43
+ - uses : r-lib/actions/setup-r-dependencies@v2
44
+ with :
45
+ extra-packages : any::rcmdcheck
46
+ needs : check
47
+
48
+ - uses : r-lib/actions/check-r-package@v2
49
+ with :
50
+ upload-snapshots : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2
+ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
+ on :
4
+ push :
5
+ branches : [main, master]
6
+ pull_request :
7
+ branches : [main, master]
8
+
9
+ name : test-coverage
10
+
11
+ jobs :
12
+ test-coverage :
13
+ runs-on : ubuntu-latest
14
+ env :
15
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
16
+
17
+ steps :
18
+ - uses : actions/checkout@v3
19
+
20
+ - uses : r-lib/actions/setup-r@v2
21
+ with :
22
+ use-public-rspm : true
23
+
24
+ - uses : r-lib/actions/setup-r-dependencies@v2
25
+ with :
26
+ extra-packages : any::covr
27
+ needs : coverage
28
+
29
+ - name : Test coverage
30
+ run : |
31
+ covr::codecov(
32
+ quiet = FALSE,
33
+ clean = FALSE,
34
+ install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
35
+ )
36
+ shell : Rscript {0}
37
+
38
+ - name : Show testthat output
39
+ if : always()
40
+ run : |
41
+ ## --------------------------------------------------------------------
42
+ find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true
43
+ shell : bash
44
+
45
+ - name : Upload test results
46
+ if : failure()
47
+ uses : actions/upload-artifact@v3
48
+ with :
49
+ name : coverage-test-failures
50
+ path : ${{ runner.temp }}/package
Original file line number Diff line number Diff line change @@ -9,12 +9,13 @@ knitr::opts_chunk$set(
9
9
message = FALSE
10
10
)
11
11
```
12
-
12
+ <!-- badges: start -->
13
13
[ ![ cran checks] ( https://cranchecks.info/badges/worst/rerddap )] ( https://cranchecks.info/pkgs/rerddap )
14
- [ ![ R-check] ( https://github.com/ropensci/rerddap/workflows/R-check/badge.svg )] ( https://github.com/ropensci/rerddap/actions )
14
+ [ ![ R-CMD- check] ( https://github.com/ropensci/rerddap/actions/ workflows/R-CMD- check.yaml /badge.svg )] ( https://github.com/ropensci/rerddap/actions/workflows/R-CMD-check.yaml )
15
15
[ ![ codecov.io] ( https://codecov.io/github/ropensci/rerddap/coverage.svg?branch=master )] ( https://codecov.io/github/ropensci/rerddap?branch=master )
16
16
[ ![ rstudio mirror downloads] ( https://cranlogs.r-pkg.org/badges/rerddap )] ( https://github.com/r-hub/cranlogs.app )
17
17
[ ![ cran version] ( https://www.r-pkg.org/badges/version/rerddap )] ( https://cran.r-project.org/package=rerddap )
18
+ <!-- badges: end -->
18
19
19
20
` rerddap ` is a general purpose R client for working with ERDDAP servers.
20
21
Original file line number Diff line number Diff line change 1
1
rerddap
2
2
=====
3
3
4
-
5
-
4
+ <!-- badges: start -->
6
5
[ ![ cran checks] ( https://cranchecks.info/badges/worst/rerddap )] ( https://cranchecks.info/pkgs/rerddap )
7
- [ ![ R-check] ( https://github.com/ropensci/rerddap/workflows/R-check/badge.svg )] ( https://github.com/ropensci/rerddap/actions )
6
+ [ ![ R-CMD- check] ( https://github.com/ropensci/rerddap/actions/ workflows/R-CMD- check.yaml /badge.svg )] ( https://github.com/ropensci/rerddap/actions/workflows/R-CMD-check.yaml )
8
7
[ ![ codecov.io] ( https://codecov.io/github/ropensci/rerddap/coverage.svg?branch=master )] ( https://codecov.io/github/ropensci/rerddap?branch=master )
9
8
[ ![ rstudio mirror downloads] ( https://cranlogs.r-pkg.org/badges/rerddap )] ( https://github.com/r-hub/cranlogs.app )
10
9
[ ![ cran version] ( https://www.r-pkg.org/badges/version/rerddap )] ( https://cran.r-project.org/package=rerddap )
10
+ <!-- badges: end -->
11
11
12
12
` rerddap ` is a general purpose R client for working with ERDDAP servers.
13
13
You can’t perform that action at this time.
0 commit comments