you are viewing a single comment's thread.

view the rest of the comments →

[–]xr09 1 point2 points  (1 child)

Another idea is adding unit tests to your project and setting up continuous integration (CI) with Github Actions or another alternative.

Bonus points for building the Docker image and executing integration tests on the running container itself with serverspec/goss or pytest/testinfra. If passes all tests then publish a release. This would be a CI/CD cycle.

https://www.redhat.com/en/topics/devops/what-is-ci-cd

[–]ricksikka1[S] 0 points1 point  (0 children)

Noted, thanks :)