We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5a3c02 commit e4b98e4Copy full SHA for e4b98e4
.github/workflows/document.yaml
@@ -31,11 +31,16 @@ jobs:
31
- name: Specific Rfast dependency
32
run: |
33
install.packages("remotes")
34
- remotes::install_version("Rfast", version = "2.0.8") # Ensure Rfast is installed
+ remotes::install_version("Rfast", version = "2.0.8")
35
+ print(.libPaths()) # Debugging
36
+ installed_pkgs <- installed.packages()[, "Package"]
37
+ print(installed_pkgs) # Debugging
38
shell: Rscript {0}
39
40
- name: Document
- run: roxygen2::roxygenise()
41
+ run: |
42
+ library(Rfast) # Ensure it loads
43
+ roxygen2::roxygenise()
44
45
46
- name: commit
0 commit comments