-
Notifications
You must be signed in to change notification settings - Fork 57
Description
🐞 Problem
A simple-resolution bug has been identified in the PyFluent project. It is stated in the main README.rst file that the GitHub Actions button is "failing" (see image below)

But when going to the actual GitHub Actions of the PyFluent project, everything seems nominal and successful as you can see in this link.
💡 Solution
The solution is pretty straightforward. The problem resides in the fact that the README.rst file is pointing to the incorrect link to detect whether the GitHub Actions are successsful or not. The actual README file looks like this:
PyFluent
========
|GH-CI| |MIT|
.. |GH-CI| image:: https://github.com/pyansys/pymapdl/actions/workflows/ci.yml/badge.svg
:target: https://github.com/pyansys/pymapdl/actions/workflows/ci.yml
As we can see from the above links, the buttons are pointing to the PyMAPDL project, which is incorrect. They should be pointing to the actual CI jobs of the PyFluent project. The file should in fact look like this:
PyFluent
========
|GH-CI| |MIT|
.. |GH-CI| image:: https://github.com/pyansys/pyfluent/actions/workflows/ci.yml/badge.svg
:target: https://github.com/pyansys/pyfluent/actions/workflows/ci.yml