File tree Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -32,19 +32,32 @@ jobs:
32
32
steps :
33
33
- uses : actions/checkout@v2
34
34
35
- - name : Bootstrap
36
- run : |
37
- curl -OLs https://eddelbuettel.github.io/r-ci/run.sh
38
- chmod 0755 run.sh
39
- ./run.sh bootstrap
35
+ # - name: Bootstrap
36
+ # run: |
37
+ # curl -OLs https://eddelbuettel.github.io/r-ci/run.sh
38
+ # chmod 0755 run.sh
39
+ # ./run.sh bootstrap
40
40
41
41
- name : Container
42
- run : |
43
- docker pull ${{ matrix.cntr }}
44
- docker run --rm -i -v ${PWD}:/mnt -w /mnt ${{ matrix.cntr }} ${{ matrix.r }} -q -e 'sessionInfo()'
42
+ run : docker pull ${{ matrix.cntr }}
43
+
44
+ - name : SessionInfo
45
+ run : docker run --rm -i -v ${PWD}:/mnt -w /mnt ${{ matrix.cntr }} ${{ matrix.r }} -q -e 'sessionInfo()'
45
46
46
47
- name : Build
47
48
run : docker run --rm -i -v ${PWD}:/mnt -w /mnt ${{ matrix.cntr }} ${{matrix.r }} CMD build --no-build-vignettes --no-manual .
48
49
49
50
- name : Check
50
51
run : docker run --rm -i -v ${PWD}:/mnt -w /mnt ${{ matrix.cntr }} ${{ matrix.r }} CMD check --no-vignettes --no-manual Rcpp_*.tar.gz
52
+
53
+ covr :
54
+ runs-on : ubuntu-latest
55
+ steps :
56
+ - name : Checkout Project
57
+ uses : actions/checkout@v1
58
+
59
+ - name : Container
60
+ run : docker pull rcpp/ci
61
+
62
+ - name : Coverage
63
+ run : docker run --rm -i -v ${PWD}:/mnt -w /mnt -e CODECOV_TOKEN=${{secrets.CODECOV_TOKEN }} rcpp/ci r -l covr -e 'codecov()'
You can’t perform that action at this time.
0 commit comments