File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ # Run CI for R using https://eddelbuettel.github.io/r-ci/
2+
3+ name : ci
4+
5+ on :
6+ push :
7+ pull_request :
8+
9+ env :
10+ USE_BSPM : " true"
11+ _R_CHECK_FORCE_SUGGESTS_ : " false"
12+
13+ jobs :
14+ ci :
15+ strategy :
16+ matrix :
17+ config :
18+ # - {os: macOS-latest}
19+ - {os: ubuntu-latest}
20+
21+ runs-on : ${{ matrix.config.os }}
22+
23+ steps :
24+ - uses : actions/checkout@v2
25+
26+ - name : Bootstrap
27+ run : |
28+ curl -OLs https://eddelbuettel.github.io/r-ci/run.sh
29+ chmod 0755 run.sh
30+ ./run.sh bootstrap
31+
32+ - name : Dependencies
33+ run : ./run.sh install_all
34+
35+ - name : Test
36+ run : ./run.sh run_tests
37+
38+ # - name: Coverage
39+ # run: ./run.sh coverage
Original file line number Diff line number Diff line change 1+ 2020-12-14 Dirk Eddelbuettel <edd@debian.org>
2+
3+ * .github/workflows/ci.yaml: Add CI runner using r-ci
4+
152020-12-05 Dirk Eddelbuettel <edd@debian.org>
26
37 * DESCRIPTION (Version, Date): Release 0.3.3.9.0
You can’t perform that action at this time.
0 commit comments