We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aaa9c7 commit 12aa24bCopy full SHA for 12aa24b
1 file changed
.github/workflows/website.yaml
@@ -19,17 +19,21 @@ jobs:
19
/usr/lib/R/site-library/
20
key: ${{ runner.os }}
21
22
- - name: Install netdiffuseR
+ - name: Download netdiffuseR
23
+ if: steps.cache-r-packages.outputs.cache-hit != 'true'
24
uses: actions/checkout@v4
25
with:
26
repository: USCCANA/netdiffuseR
27
path: netdiffuseR
28
29
- if: steps.cache-r-packages.outputs.cache-hit != 'true'
+ - name: Install dependencies
30
run: |
31
install2.r igraph networkDynamic statnet Rcpp MatchIt \
32
SparseM viridisLite RcppArmadillo rmarkdown knitr microbenchmark
33
+
34
+ - name: Install netdiffuseR
35
36
+ run: |
37
R CMD INSTALL netdiffuseR
38
rm -rf netdiffuseR
39
0 commit comments