-
Notifications
You must be signed in to change notification settings - Fork 24
52 lines (50 loc) · 1.73 KB
/
QA_QC_checks.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
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
on:
push:
paths:
- 'data/**'
- 'scripts/QA_QC/checks.R'
- 'scripts/Database_manipulation/Generate PLOTS from HISTORY/ForC_plots_from_history.R'
pull_request:
paths:
- 'data/**'
- 'scripts/QA_QC/checks.R'
- 'scripts/Database_manipulation/Generate PLOTS from HISTORY/ForC_plots_from_history.R'
name: QA_QC_checks
jobs:
QA_QC_checks:
runs-on: windows-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v1
- name: Install dependencies
run: |
install.packages(c("remotes", "rcmdcheck", "dplyr", "readr", "R2HTML", "progress"))
# remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
# - name: Check
# run: |
# options(crayon.enabled = TRUE)
# rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
# shell: Rscript {0}
- name: Generating PLOTS
id: Generating_PLOTS
run: |
source("scripts/Database_manipulation/Generate PLOTS from HISTORY/ForC_plots_from_history.R")
shell: Rscript {0}
- name: Quality checks
id: Quality_checks
run: |
source("scripts/QA_QC/checks.R")
shell: Rscript {0}
- name: Commit new files
run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
git pull
git add --all
git commit -am "add data"
git push