Skip to content

Commit

Permalink
add workflow file for package-wide checks
Browse files Browse the repository at this point in the history
  • Loading branch information
fbenke-pik committed Feb 12, 2024
1 parent fb425b7 commit 57d8d98
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@ jobs:
shell: Rscript {0}
run: lucode2:::validkey(stopIfInvalid = TRUE)

- name: Verify that lucode2::buildLibrary was successful
shell: Rscript {0}
run: lucode2:::isVersionUpdated()

- name: Checks
shell: Rscript {0}
run: |
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/checkPackage.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: checkPackage

on:
pull_request:
branches: [main, master]

jobs:
check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- 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: |
gamstransfer=?ignore
any::lucode2
any::covr
any::madrat
any::magclass
any::citation
any::gms
any::goxygen
any::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: Verify that lucode2::buildLibrary was successful
shell: Rscript {0}
run: lucode2:::isVersionUpdated()

0 comments on commit 57d8d98

Please sign in to comment.