Disallow failure of checkstyle linter in merge requests #210

Merged
lars.winzer merged 3 commits from feat/22-disallow-failure-of-checkstyle-mr-job into main 2026-03-30 14:23:48 +02:00
Showing only changes of commit f9b866fc40 - Show all commits
@@ -0,0 +1,7 @@
package ch.unibas.dmi.dbis.cs108.casono.server;
public class Violator {
public void dummy() {
System.out.println("This is a disallowed sysout statement, triggering the failure of the merge request");
}
}