Skip to content

Commit 91148a1

Browse files
committed
Begin transition from Travis CI to GH actions.
1 parent 07bef6d commit 91148a1

File tree

8 files changed

+314
-105
lines changed

8 files changed

+314
-105
lines changed

.github/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.html

.github/workflows/R-CMD-check.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
2+
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request:
9+
branches:
10+
- main
11+
- master
12+
13+
name: R-CMD-check
14+
15+
jobs:
16+
R-CMD-check:
17+
runs-on: macOS-latest
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: r-lib/actions/setup-r@v1
21+
- name: Install dependencies
22+
run: |
23+
install.packages(c("remotes", "rcmdcheck"))
24+
remotes::install_deps(dependencies = TRUE)
25+
shell: Rscript {0}
26+
- name: Check
27+
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
28+
shell: Rscript {0}

CRAN-RELEASE

-2
This file was deleted.

R/evaluator-package.R

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#' @keywords internal
2+
"_PACKAGE"
3+
4+
# The following block is used by usethis to automatically manage
5+
# roxygen namespace tags. Modify with care!
6+
## usethis namespace: start
7+
## usethis namespace: end
8+
NULL

README.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ knitr::opts_chunk$set(
1616
# evaluator <a href="https://evaluator.tidyrisk.org"><img alt="evaluator Logo" title="evaluator" align="right" src="man/figures/logo.png" height="139"/></a>
1717

1818
<!-- badges: start -->
19-
[![Build Status](https://travis-ci.org/davidski/evaluator.svg?branch=master)](https://travis-ci.org/davidski/evaluator)
19+
[![R build status](https://github.com/davidski/evaluator/workflows/R-CMD-check/badge.svg)](https://github.com/davidski/evaluator/actions)
2020
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/davidski/evaluator?branch=master&svg=true)](https://ci.appveyor.com/project/davidski/evaluator)
2121
[![Coverage Status](https://codecov.io/gh/davidski/evaluator/branch/master/graph/badge.svg)](https://codecov.io/github/davidski/evaluator?branch=master)
2222
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/evaluator)](https://cran.r-project.org/package=evaluator)

renv.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"R": {
3-
"Version": "3.6.2",
3+
"Version": "4.0.3",
44
"Repositories": [
55
{
66
"Name": "CRAN",
@@ -835,10 +835,10 @@
835835
},
836836
"renv": {
837837
"Package": "renv",
838-
"Version": "0.9.3",
838+
"Version": "0.12.2",
839839
"Source": "Repository",
840840
"Repository": "CRAN",
841-
"Hash": "c1a367437d8a8a44bec4b9d4974cb20c"
841+
"Hash": "398cc1ea892e1aade66d1ecbb2874d24"
842842
},
843843
"reshape2": {
844844
"Package": "reshape2",

renv/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
lock/
12
library/
23
python/
34
staging/

0 commit comments

Comments
 (0)