Skip to content

Commit

Permalink
Add rhub2 (#70)
Browse files Browse the repository at this point in the history
* Finalize DESCRIPTION.

* Set up rhub.
  • Loading branch information
jonthegeek authored May 20, 2024
1 parent aff36c2 commit 03701f4
Show file tree
Hide file tree
Showing 6 changed files with 101 additions and 9 deletions.
95 changes: 95 additions & 0 deletions .github/workflows/rhub.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# R-hub's generic GitHub Actions workflow file. It's canonical location is at
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml
# You can update this file to a newer version using the rhub2 package:
#
# rhub::rhub_setup()
#
# It is unlikely that you need to modify this file manually.

name: R-hub
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}"

on:
workflow_dispatch:
inputs:
config:
description: 'A comma separated list of R-hub platforms to use.'
type: string
default: 'linux,windows,macos'
name:
description: 'Run name. You can leave this empty now.'
type: string
id:
description: 'Unique ID. You can leave this empty now.'
type: string

jobs:

setup:
runs-on: ubuntu-latest
outputs:
containers: ${{ steps.rhub-setup.outputs.containers }}
platforms: ${{ steps.rhub-setup.outputs.platforms }}

steps:
# NO NEED TO CHECKOUT HERE
- uses: r-hub/actions/setup@v1
with:
config: ${{ github.event.inputs.config }}
id: rhub-setup

linux-containers:
needs: setup
if: ${{ needs.setup.outputs.containers != '[]' }}
runs-on: ubuntu-latest
name: ${{ matrix.config.label }}
strategy:
fail-fast: false
matrix:
config: ${{ fromJson(needs.setup.outputs.containers) }}
container:
image: ${{ matrix.config.container }}

steps:
- uses: r-hub/actions/checkout@v1
- uses: r-hub/actions/platform-info@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/setup-deps@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/run-check@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}

other-platforms:
needs: setup
if: ${{ needs.setup.outputs.platforms != '[]' }}
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.label }}
strategy:
fail-fast: false
matrix:
config: ${{ fromJson(needs.setup.outputs.platforms) }}

steps:
- uses: r-hub/actions/checkout@v1
- uses: r-hub/actions/setup-r@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
- uses: r-hub/actions/platform-info@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/setup-deps@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
- uses: r-hub/actions/run-check@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
9 changes: 4 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@ Version: 0.0.0.9001
Authors@R:
person("Jon", "Harmon", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-4781-4346"))
Description: A set of consistent functions to quickly check function arguments,
coerce them to the desired configuration, or deliver informative error
messages when that is not possible.
Description: A set of consistent, opinionated functions to quickly check
function arguments, coerce them to the desired configuration, or deliver
informative error messages when that is not possible.
License: MIT + file LICENSE
URL: https://github.com/jonthegeek/stbl,
https://jonthegeek.github.io/stbl/
BugReports: https://github.com/jonthegeek/stbl/issues
Imports:
cli,
fastmatch,
glue,
rlang (>= 1.1.0),
vctrs
Expand All @@ -24,4 +23,4 @@ Config/testthat/edition: 3
Config/testthat/parallel: true
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.0
RoxygenNote: 7.3.1
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export(to_lgl)
export(to_lgl_scalar)
importFrom(cli,cli_abort)
importFrom(cli,no)
importFrom(fastmatch,"%fin%")
importFrom(glue,glue)
importFrom(rlang,"%||%")
importFrom(rlang,caller_arg)
Expand Down
1 change: 0 additions & 1 deletion R/stbl-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
## usethis namespace: start
#' @importFrom cli cli_abort
#' @importFrom cli no
#' @importFrom fastmatch %fin%
#' @importFrom glue glue
#' @importFrom rlang %||%
#' @importFrom rlang check_dots_empty0
Expand Down
2 changes: 1 addition & 1 deletion R/to_fct.R
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ to_fct.default <- function(x,
.coerce_fct_to_na <- function(x, to_na, call = caller_env()) {
to_na <- to_chr(to_na, call = call)
if (length(to_na)) {
x[x %fin% to_na] <- NA
x[x %in% to_na] <- NA
}
return(x)
}
Expand Down
2 changes: 1 addition & 1 deletion man/stbl-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 03701f4

Please sign in to comment.