|
|
|
|
|
by Freak_NL
220 days ago
|
|
> You want a CI pipeline, so the junior developer can't just break prod because they forgot to run the tests before pushing. Make them part of your build first. Tagging a release? Have a documented process (checklist) that says 'run this, do that'. Like how in a Java Maven build you would execute `mvn release:prepare` and `mvn release:perform`, which will execute all tests as well as do the git tagging and anything else that needs doing. Scale up to a CI pipeline once that works. It is step one for doing that anyway. |
|