Skip to content

Commit

Permalink
Update r.yml
Browse files Browse the repository at this point in the history
Added more debugging, and downloading dependencies.
  • Loading branch information
amandazimmey authored Jan 1, 2025
1 parent 651e2cc commit 4e43130
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/r.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,8 @@ jobs:
- name: Install system dependencies (macOS)
if: matrix.config.os == 'macOS-latest'
run: |
brew update
brew upgrade
brew install pandoc
brew install libxml2 curl
brew link --overwrite libxml2 curl
- name: Install Pandoc for Windows
if: matrix.config.os == 'windows-latest'
Expand Down Expand Up @@ -98,6 +97,9 @@ jobs:
- name: Check the package (Linux/macOS)
if: matrix.config.os != 'windows-latest'
run: |
echo "Running R CMD build"
R CMD build .
echo "Running R CMD check"
PKG_TAR=$(ls *.tar.gz)
R CMD check "$PKG_TAR" --no-manual --as-cran
Expand Down

0 comments on commit 4e43130

Please sign in to comment.