If you’ve added skip to your Fact in XUnit and it’s still trying to run it, make sure you have added a reason or description for the skip. Simply adding Skip is not enough.
Tag: CI/CD
Github refusing to allow an OAuth App to create or update workflow
You might end up with this error when trying to edit and push your Github pipeline from visual studio code or the terminal. You don’t need to use a personal access token with workflow enabled or a github_token. What you do is deleting the credential and let it do the connection configuration itself when connecting.
Github Actions building R install packages syntax error near unexpected token `c’
When trying to run the r-lib/actions/setup-r for R in Github Actions installing the dependencies. The pipeline yaml file I was missing adding shell: Rscript {0} at the end so the Install dependencies will be Source: https://github.com/r-lib/actions/tree/master/examples
Github Actions building R Error in read.dcf(path) cannot open the connection
When trying to run the r-lib/actions/setup-r for R in Github Actions installing the dependencies. When running this I get an error in read.dcf(path) cannot open the connection As the error message states isn’t trying to locate a DESCRIPTION file. Add a file called DESCRIPTION in the path it’s provided (most likely your root folder). Examples