-
Notifications
You must be signed in to change notification settings - Fork 20
53 lines (45 loc) · 1.34 KB
/
R-CMD-check-devel.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
52
53
# R CMD Check is run with the development versions of hard dependencies.
on:
schedule:
# * is a special character in YAML so you have to quote this string
# Trigger once a week at 00:00 on Sunday
- cron: "0 0 * * SUN"
name: R-CMD-check-devel
jobs:
R-CMD-check-devel:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: "latest"
- uses: r-lib/actions/setup-r@v2
with:
r-version: "devel"
use-public-rspm: true
# only download hard deps under active development
- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
upgrade: "TRUE"
needs: check
extra-packages: |
any::rcmdcheck
easystats/insight
easystats/bayestestR
easystats/datawizard
easystats/effectsize
easystats/parameters
easystats/performance
tidyverse/purrr
tidyverse/dplyr
tidyverse/tibble
tidyverse/tidyr
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
upload-results: true
error-on: '"note"'