-
Notifications
You must be signed in to change notification settings - Fork 21
51 lines (44 loc) · 1.43 KB
/
check-all-examples.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Make sure all examples run successfully, even the ones that are not supposed
# to be run or tested on CRAN machines by default.
#
# The examples that fail should use
# - `if (FALSE) { ... }` (if example is included only for illustrative purposes)
# - `try({ ... })` (if the intent is to show the error)
#
# This workflow helps find such failing examples that need to be modified.
on:
pull_request:
branches: [master]
name: check-all-examples
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
check-all-examples:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
with:
#r-version: "devel"
use-public-rspm: true
- name: Install packages from source
run: |
install.packages(c("Matrix", "TMB"), type = "source")
shell: Rscript {0}
- uses: r-lib/actions/setup-r-dependencies@v2
with:
#cache-version: 2
pak-version: devel
extra-packages: |
TMB=?ignore-before-r=100.0.0
Matrix=?ignore-before-r=100.0.0
any::devtools
local::.
- name: Run examples
run: |
options(crayon.enabled = TRUE, warn = 2L)
devtools::run_examples(run_dontrun = TRUE, run_donttest = TRUE, document = FALSE)
shell: Rscript {0}