Skip to content

Commit e4b98e4

Browse files
authored
Debugging rfast install
1 parent b5a3c02 commit e4b98e4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/document.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,16 @@ jobs:
3131
- name: Specific Rfast dependency
3232
run: |
3333
install.packages("remotes")
34-
remotes::install_version("Rfast", version = "2.0.8") # Ensure Rfast is installed
34+
remotes::install_version("Rfast", version = "2.0.8")
35+
print(.libPaths()) # Debugging
36+
installed_pkgs <- installed.packages()[, "Package"]
37+
print(installed_pkgs) # Debugging
3538
shell: Rscript {0}
3639

3740
- name: Document
38-
run: roxygen2::roxygenise()
41+
run: |
42+
library(Rfast) # Ensure it loads
43+
roxygen2::roxygenise()
3944
shell: Rscript {0}
4045

4146
- name: commit

0 commit comments

Comments
 (0)