The badge status in the README is set to "no status".
This is because the tests are only run during PR and not once merge to the main repository, thus the badge is never updated.
To fix this, a simple modification can be done to make those tests update once a PR is merged and giving the correct badge to display in the README.
In the run_tests file or the workflow folder replace:
on: [pull_request]
With:
on:
push:
branches: [main]
pull_request:
This simple and minor addition could be implemented in the next PR.
The badge status in the README is set to "no status".
This is because the tests are only run during PR and not once merge to the main repository, thus the badge is never updated.
To fix this, a simple modification can be done to make those tests update once a PR is merged and giving the correct badge to display in the README.
In the run_tests file or the workflow folder replace:
on: [pull_request]With:
This simple and minor addition could be implemented in the next PR.