Merge pull request #530 from Renato-Rodrigues/ECEMF-template #1244
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: [main, master] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
extra-repositories: "https://rse.pik-potsdam.de/r/packages" | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: | | |
lucode2 | |
covr | |
madrat | |
magclass | |
citation | |
gms | |
goxygen | |
GDPuc | |
# piam packages also available on CRAN (madrat, magclass, citation, | |
# gms, goxygen, GDPuc) will usually have an outdated binary version | |
# available; by using extra-packages we get the newest version | |
- name: Run pre-commit checks | |
shell: bash | |
run: | | |
python -m pip install pre-commit | |
python -m pip freeze --local | |
pre-commit run --show-diff-on-failure --color=always --all-files | |
- name: Verify validation key | |
shell: Rscript {0} | |
run: lucode2:::validkey(stopIfInvalid = TRUE) | |
- name: Verify that lucode2::buildLibrary was successful | |
if: github.event_name == 'pull_request' | |
shell: Rscript {0} | |
run: lucode2:::isVersionUpdated() | |
- name: Checks | |
shell: Rscript {0} | |
run: | | |
options(crayon.enabled = TRUE) | |
lucode2::check(runLinter = FALSE) | |
- name: Test coverage | |
shell: Rscript {0} | |
run: | | |
nonDummyTests <- setdiff(list.files("./tests/testthat/"), c("test-dummy.R", "_snaps")) | |
if(length(nonDummyTests) > 0 && !lucode2:::loadBuildLibraryConfig()[["skipCoverage"]]) covr::codecov(quiet = FALSE) | |
env: | |
NOT_CRAN: "true" |