git hub actions issue

I am attempting to use git hub actions with my R package https://github.com/donaldRwilliams/blsmeta

I am getting the following error

It seems particular to JAGS.

What can I do to ensure JAGS is installed and loaded correctly on macOS-latest . My thought was to change the .yaml but wanted to get some advice before doing so (just now going to github-actions from travis, so not familiar with it).

thanks in advance

This seems to be relevant.

Yes, if your package is dependant on the jags system dependency you will need to install it in your workflow.

Add something like the following to your steps in .github/workflows/R-CMD-check.yaml

- name: Install system dependencies
  run: brew install jags
1 Like

This topic was automatically closed after 45 days. New replies are no longer allowed.


If you have a query related to it or one of the replies, start a new topic and refer back with a link.