File tree Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 1
1
^\.travis\.yml$
2
+ .github
2
3
^.*\.Rproj$
3
4
^\.Rproj\.user$
4
5
doc/slides
Original file line number Diff line number Diff line change
1
+ # Build
2
+
3
+ name : Build
4
+
5
+ on :
6
+ push :
7
+ branches : [ master ]
8
+ pull_request :
9
+ branches : [ master ]
10
+
11
+ jobs :
12
+ build :
13
+ name : R ${{ matrix.config.r }} | ${{ matrix.config.os }}
14
+ runs-on : ${{ matrix.config.os }}
15
+ strategy :
16
+ matrix :
17
+ config :
18
+ - {os: ubuntu-20.04, r: '4.0.5', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
19
+ steps :
20
+ - uses : actions/checkout@v2
21
+ # R Set-up
22
+ - name : Set up R ${{ matrix.config.r }}
23
+ uses : r-lib/actions/setup-r@v1
24
+ with :
25
+ r-version : ${{ matrix.config.r }}
26
+ # Install dependencies
27
+ - name : Install dependencies
28
+ uses : r-lib/actions/setup-r-dependencies@v1
29
+ with :
30
+ extra-packages : covr
31
+ # Test code coverage
32
+ - name : Test code coverage
33
+ run : covr::codecov()
34
+ shell : Rscript {0}
35
+ # Check R Package
36
+ - name : Check R package
37
+ uses : r-lib/actions/check-r-package@check-r-package
38
+ with :
39
+ artifact-name : rsdmx_r-${{ matrix.config.r }}_${{ matrix.config.os }}-results
Original file line number Diff line number Diff line change 1
1
** rsdmx**
2
2
=======
3
- [ ![ Build Status] ( https://travis-ci.org/opensdmx /rsdmx. svg?branch=master )] ( https://travis-ci.org/opensdmx /rsdmx )
3
+ [ ![ Build Status] ( https://github.com/eblondel /rsdmx/actions/workflows/r-cmd-check.yml/badge. svg?branch=master )] ( https://github.com/eblondel /rsdmx/actions/workflows/r-cmd-check.yml )
4
4
[ ![ codecov.io] ( https://codecov.io/github/opensdmx/rsdmx/coverage.svg?branch=master )] ( https://codecov.io/github/opensdmx/rsdmx?branch=master )
5
5
[ ![ CRAN_Status_Badge] ( https://www.r-pkg.org/badges/version/rsdmx )] ( https://cran.r-project.org/package=rsdmx )
6
6
[ ![ cran checks] ( https://cranchecks.info/badges/worst/rsdmx )] ( https://cran.r-project.org/web/checks/check_results_rsdmx.html )
You can’t perform that action at this time.
0 commit comments