Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cjvanlissa committed Apr 27, 2023
1 parent ab0815d commit 7b4c104
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 92 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
84 changes: 0 additions & 84 deletions .github/workflows/check-standard.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Authors@R: c(
person(c("Xin"), "Gu", role = c("aut"), email = "[email protected]"),
person(c("Herbert"), "Hoijtink", role = c("aut"), email = "[email protected]"),
person(c("Joris"), "Mulder", role = c("aut"), email = "[email protected]"),
person(c("Caspar", "J"), "van Lissa", role = c("aut", "cre"), email = "c.j.vanlissa@uu.nl"),
person(c("Caspar", "J"), "van Lissa", role = c("aut", "cre"), email = "c.j.vanlissa@tilburguniversity.edu"),
person(c("Van Zundert"), "Camiel", role = "ctb"),
person(c("Jeff"), "Jones", role = "ctb"),
person(c("Niels"), "Waller", role = "ctb")
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ knitr::opts_chunk$set(

[![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![CRAN status](https://www.r-pkg.org/badges/version/bain)](https://cran.r-project.org/package=bain)
[![R-CMD-check](https://github.com/cjvanlissa/bain/workflows/R-CMD-check/badge.svg)](https://github.com/cjvanlissa/bain/actions)
[![R-CMD-check](https://github.com/cjvanlissa/bain/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/cjvanlissa/bain/actions/workflows/R-CMD-check.yaml)
[![](https://cranlogs.r-pkg.org/badges/bain)](https://cran.r-project.org/package=bain)
[![test-coverage](https://github.com/cjvanlissa/bain/workflows/test-coverage/badge.svg)](https://github.com/cjvanlissa/bain/actions)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html)
Expand Down
19 changes: 13 additions & 6 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
# Version 0.2.8
# Version 0.2.9

* Minor bugfix to ensure compatibility with JASP

## Test environments
* local x86_64-pc-linux-gnu, R 4.1.0
* rhub check: Windows Server 2008 R2 SP1, R-devel, 32/64 bit
* rhub check: Ubuntu Linux 20.04.1 LTS, R-release, GCC
* local x86_64-pc-linux-gnu, R 4.2.2
* rhub check: Windows Server 2022, R-devel, 64 bit
* rhub check: Fedora Linux, R-devel, clang, gfortran
* rhub check: Ubuntu Linux 20.04.1 LTS, R-release, GCC
* rhub check: Debian Linux, R-devel, GCC ASAN/UBSAN
* win-builder (devel and release)
* win-builder: 4.2.3 (2023-03-15 ucrt)
* win-builder: 4.3.0 (2023-04-21 ucrt)
* win-builder: R Under development (unstable) (2023-04-25 r84327 ucrt)
* GitHub actions, windows-latest (release)
* GitHub actions, macOS-latest (release)
* GitHub actions, ubuntu-20.04 (release)
* GitHub actions, ubuntu-20.04 (devel)

## R CMD check results

0 errors | 0 warnings | 0 notes
0 errors | 0 warnings | 2 notes

* New maintainer
+ My affiliation changed, https://www.tilburguniversity.edu/nl/medewerkers/c-j-vanlissa
* (possibly) invalid DOIs
+ These DOIs are correct, but the server blocks some automated calls.

0 comments on commit 7b4c104

Please sign in to comment.