1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 10:31:53 +02:00

fix for R <= 3.3

This commit is contained in:
2022-08-28 19:34:04 +02:00
parent 71db246d5c
commit c44ddf272f
5 changed files with 13 additions and 8 deletions

View File

@ -135,6 +135,7 @@ jobs:
R_RUN_TINYTEST: true
run: |
cd ..
ls -lh
R CMD build AMR
R CMD check --no-manual --run-donttest --run-dontrun AMR_*.tar.gz
shell: bash
@ -142,6 +143,8 @@ jobs:
- name: Show unit tests output
if: always()
run: |
ls -lh
cd AMR
find . -name 'tinytest.Rout*' -exec cat '{}' \; || true
shell: bash