Sébastien Rochette
Sébastien Rochette
Add system requirements as for actions. ```yaml - name: Query dependencies run: | install.packages('remotes') saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") shell: Rscript {0} - name:...
Add badges: ``` # _Badges usethis::use_badge(badge_name = "pipeline status", href = "https://///-/commits/master", src = "https://///badges/master/pipeline.svg") usethis::use_badge(badge_name = "coverage report", href = "http://.//coverage.html", src = "https://///badges/master/coverage.svg") ``` _Note that `pages-url` is...
I am not sure how this should work for subdirectories. But pushed at the rroot of the project, this works in the unit tests: https://github.com/statnmap/gitlabr/blob/aca7bbabe4dff21959e34e41c695fb79a83a5866/tests/testthat/test_files.R#L60 However, the function does not...
I think that parameters should be user-friendly. Then, option 2. Hence, - `gl_file_exists()` needs to take a classical file_path as input. - `gl_push_file()` also take a classical file_path, but is...
This is now included in the development version of gitlabr
Je vais avoir besoin d'un peu plus de doc de la fonction et de tests pour pouvoir intégrer ces changements.
Thanks for reporting. This is what we started to fix in this PR : https://github.com/ThinkR-open/gitlabr/pull/106 , and I hardly find time to finish this big step...
That should be good now in the dev version. I treated this one in PR: https://github.com/ThinkR-open/gitlabr/pull/106 And added some unit tests to verify. Thank you for your exploration
Release on CRAN is coming soon. I think we can close this issue now.
Add bs4_book along with gitbook ```yaml - Rscript -e 'bookdown::render_book("index.Rmd", output_format = "bookdown::bs4_book", clean = FALSE, output_dir = "public")' # - Rscript -e 'bookdown::render_book("index.Rmd", output_format = "bookdown::pdf_book", clean = FALSE,...