ropensci / rdefra

rdefra: Interact with the UK AIR Pollution Database from DEFRA
https://docs.ropensci.org/rdefra
16 stars 6 forks source link

Migrate CI #12

Closed cvitolo closed 3 years ago

cvitolo commented 3 years ago

Migrate CI from travis-ci.org to GitHub Actions

cvitolo commented 3 years ago

Removed webhooks for travis

cvitolo commented 3 years ago

Added action R-CMD-check

devtools::install_github("r-lib/usethis")
usethis::use_github_action_check_full()
cvitolo commented 3 years ago

Added GH action to build pkgdown site

usethis::use_github_action("pkgdown")

To make this work, I had to delete the gh-pages branch.

cvitolo commented 3 years ago

Added GH action to test coverage workflow.

usethis::use_github_action("test-coverage")

cvitolo commented 3 years ago

Added GH action for lint workflow (static code analysis)

usethis::use_github_action("lint")

cvitolo commented 3 years ago

Migration completed