Hello all. When using `buildFatJar` to build the k...
# ktor
g
Hello all. When using
buildFatJar
to build the ktor jar, when do you run the tests? Do you make the jar task depend on the check task or is there a different task to build and run the tests?
h
Usually it's a ci/cd step Run tests first Build fat jar If tests fail, no jar is built
g
indeed, we have a spring service that im trying to migrate to ktor and there when we do
build
it also runs the tests so i was wondering if i have to change the pipeline also