darkrockmountain / gomail

GoMail is a powerful library for sending emails via multiple providers, including SMTP, Gmail API, Microsoft Graph API, SendGrid, AWS SES, Mailgun, Mandrill, Postmark, and SparkPost. Supporting attachments, plain text, and HTML content, it simplifies email integration for developers with easy setup and robust functionalities.
https://darkrockmountain.com
Apache License 2.0
4 stars 1 forks source link

fix(ci): prevent errors when vars.CODECOV_BRANCHES is undefined (espe… #67

Closed JRocabruna closed 1 month ago

JRocabruna commented 1 month ago

Description

This pull request addresses an issue where the CI pipeline would fail if the environment variable vars.CODECOV_BRANCHES is not set. This situation commonly occurs when the code is being built from a forked repository. By adding a check for the existence of this variable, we ensure that the CI process can proceed smoothly without interruption.

Checklist

Please ensure the following guidelines are met:

Additional Information

This fix is essential for ensuring the stability of the CI pipeline when handling forks, which do not always have the same environment variables set as the original repository. No additional dependencies are required for this change.