Senior
Is it okay that we have Go running in CI?
sobes.tech AI
Answer from AI
Yes, using Go in CI (Continuous Integration) is normal and quite common. Go compiles quickly, has static typing, and is easy to distribute as a single binary file, which simplifies setting up CI/CD pipelines.
For example, you can write a utility in Go for automating tests or deployment, and run it in a CI system without the need to install additional dependencies.
This increases the reliability and speed of builds, especially in microservices architectures.