We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b27d73b commit b5a3c02Copy full SHA for b5a3c02
.github/workflows/document.yaml
@@ -22,15 +22,17 @@ jobs:
22
- uses: r-lib/actions/setup-r@v2
23
with:
24
use-public-rspm: true
25
-
26
- - name: Install system dependencies
27
- # required for Rfast
28
- run: sudo apt-get install -y libgomp1
29
30
- uses: r-lib/actions/setup-r-dependencies@v2
31
32
extra-packages: any::roxygen2
33
needs: pr-document
+
+ - name: Specific Rfast dependency
+ run: |
+ install.packages("remotes")
34
+ remotes::install_version("Rfast", version = "2.0.8") # Ensure Rfast is installed
35
+ shell: Rscript {0}
36
37
- name: Document
38
run: roxygen2::roxygenise()
0 commit comments