-
Notifications
You must be signed in to change notification settings - Fork 6
78 lines (67 loc) · 2.36 KB
/
R-CMD-check.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Workflow derived from https://github.com/r-lib/actions/tree/master/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: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
AWS_ATHENA_S3_STAGING_DIR: ${{ secrets.AWS_ATHENA_S3_STAGING_DIR }}
rathena_arn: ${{ secrets.rathena_arn }}
rathena_s3_query: ${{ secrets.rathena_s3_query }}
rathena_s3_tbl: ${{ secrets.rathena_s3_tbl }}
ARROW_WITH_SNAPPY: ON
R_KEEP_PKG_SOURCE: yes
_R_CHECK_LENGTH_1_CONDITION_: abort,verbose
_R_CHECK_LENGTH_1_LOGIC2_: abort,verbose
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
github::tidyverse/dbplyr
any::rcmdcheck
any::covr
- name: Install Miniconda
run: |
reticulate::install_miniconda()
shell: Rscript {0}
- name: Configure Miniconda on MacOS
if: runner.os == 'macOS'
run: echo "options(reticulate.conda_binary = reticulate:::miniconda_conda())" >> .Rprofile
- name: Install python-boto3
run: |
reticulate::py_install(
packages = c("cython","boto3","numpy"),
envname = 'r-reticulate',
method = "conda",
conda = "auto",
python_version = "3.7",
pip = TRUE
)
shell: Rscript {0}
- uses: r-lib/actions/check-r-package@v2
- name: Show testthat output
if: always()
run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true
shell: bash
- name: Upload check results
if: failure()
uses: actions/upload-artifact@main
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
path: check
- name: Test coverage
run: covr::codecov()
shell: Rscript {0}