Skip to content

Commit

Permalink
add printout for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelVias committed Sep 5, 2024
1 parent b02bedd commit aca4dec
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- name: Print R version and session info
run: |
Rscript -e "print(R.version)"
Rscript -e "print(sessionInfo())"
- name: Install system dependencies
if: runner.os == 'Linux'
run: |
Expand All @@ -39,13 +43,15 @@ jobs:
with:
extra-packages: any::rcmdcheck
needs: check

- name: Install system dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libopenblas-dev
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
- name: Test package loading
run: |
Rscript -e "install.packages('bdrc', repos = NULL, type = 'source')"
Rscript -e "library(bdrc); print(ls('package:bdrc'))"

0 comments on commit aca4dec

Please sign in to comment.