I was getting "Undocumented code object" on GitHub Actions on my new package "github.com/sbgraves237/SS4Maddison" when the package worked fine on my local computer (running R 4.5.1 inside RStudio 2025.05.1 Build 513 under macOS 15.6.1). This was following "the fundamental workflows for test-driving and formally checking an in-development package: load_all(), test(), and check()" at the end of the first paragraph in chapter 6.
The problem disappeared when I added document() to that workflow as:
library(devtools)
load_all()
document() # add
test()
check()
This is using the standard 5-planform GitHub Actions I got, I think, from your R Packages just recently. ??? Thanks, Spencer Graves (sbgraves237).
I was getting "Undocumented code object" on GitHub Actions on my new package "github.com/sbgraves237/SS4Maddison" when the package worked fine on my local computer (running R 4.5.1 inside RStudio 2025.05.1 Build 513 under macOS 15.6.1). This was following "the fundamental workflows for test-driving and formally checking an in-development package: load_all(), test(), and check()" at the end of the first paragraph in chapter 6.
The problem disappeared when I added document() to that workflow as:
library(devtools)
load_all()
document() # add
test()
check()
This is using the standard 5-planform GitHub Actions I got, I think, from your R Packages just recently. ??? Thanks, Spencer Graves (sbgraves237).