I have just started using GHA, and in particular the standard R-CMD-check workflow for a package that I am developing.
One of the Dependency a bioconductor package (GSEABase) that can be installed directly from
github bioconductor repostitory with remotes::install_github("Bioconductor/GSEABase")
Therefore my Package Description file contains the following lines:
Imports:
GSEABase (>= 1.52.1)
Remotes:
Bioconductor/GSEABase
And package built on Windows and MacOs but fails on Ubuntu runners with just
* checking package dependencies ... ERROR
Error: Package required but not available: ‘GSEABase’
Not sure what I am missing, and I was wondering if you guys could point me to the right direction.
Best