trying to switch from travis to github actions
Hi All, I would like some help. I am trying to switch to Github actions. Essentially my travis file looks like this
dist: bionic language: r sudo : false cache: packages r: - release - devel r_packages: - Rcpp - RcppArmadillo - methods r_github_packages: - jimhester/covr warnings_are_errors: true before_install: - sudo apt-get install libharfbuzz-dev libfribidi-dev after_success: - Rscript -e 'covr::coveralls()' before_deploy: - Rscript -e 'install.packages("devtools"); devtools::install(quick = TRUE); install.packages(c("mlbench", "ggthemes", "gridExtra", "vcd", "tidyr")); devtools::document(); pkgdown::build_site();' deploy: provider: pages skip-cleanup: true github-token: $GITHUB_PAT local-dir: docs on: branch: master Any help is appreciated to get this working in Github actions
---

