Custom Docker runners
Self hosted/managed docker runners
Github Actions gives you the option to use your custom docker containers to execute your tests instead of directly using their built-in runners.
This usually leads to the loss of git information and environment variables not be available, so in this case for Currents to be able to gather all the information needed you need to setup the needed environment variables accordingly.
The best way to access this variables is through the context objects, specifically in this case the github
one.
Adding these environment variables to your .yml
file will allow your custom docker runner to report the correct information to Currents and have all the available information in the dashboard to use it as a usual Github Action tests execution.
Last updated