-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add GitHub Action CI runner using run.sh from r-ci
- Loading branch information
1 parent
00ccb46
commit 05ed633
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
^.travis.yml$ | ||
^docs | ||
^.*\.tar\.gz$ | ||
^\.github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Run CI for R using https://eddelbuettel.github.io/r-ci/ | ||
|
||
name: ci | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
USE_BSPM: "true" | ||
_R_CHECK_FORCE_SUGGESTS_: "false" | ||
|
||
jobs: | ||
ci: | ||
strategy: | ||
matrix: | ||
include: | ||
#- {os: macOS-latest} | ||
- {os: ubuntu-latest} | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Bootstrap | ||
run: | | ||
curl -OLs https://eddelbuettel.github.io/r-ci/run.sh | ||
chmod 0755 run.sh | ||
./run.sh bootstrap | ||
- name: Dependencies | ||
run: ./run.sh install_all | ||
|
||
- name: Test | ||
run: ./run.sh run_tests | ||
|
||
#- name: Coverage | ||
# if: ${{ matrix.os == 'ubuntu-latest' }} | ||
# run: ./run.sh coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2020-12-27 Dirk Eddelbuettel <[email protected]> | ||
|
||
* .github/workflows/ci.yaml: Add CI runner using r-ci | ||
|
||
2020-04-09 Dirk Eddelbuettel <[email protected]> | ||
|
||
* README.md: Add 'last commit' badge | ||
|