Skip to content

Commit 465b34e

Browse files
committed
add GitHub Action CI runner using run.sh from r-ci
1 parent 1ebf4d5 commit 465b34e

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2020-12-14 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* .github/workflows/ci.yaml: Add CI runner using r-ci
4+
15
2020-12-05 Dirk Eddelbuettel <edd@debian.org>
26

37
* DESCRIPTION (Version, Date): Release 0.3.3.9.0

0 commit comments

Comments
 (0)