Deployment 0.0.1 #25

Merged
Maece97 merged 34 commits from dev into main 2021-10-17 13:49:10 +00:00
4 changed files with 2 additions and 4 deletions
Showing only changes of commit 050d11254c - Show all commits

View File

@ -1,4 +1,4 @@
name: CI Tasks
name: CI Executor 1
on:
push:
branches: [main, dev]

View File

@ -1,4 +1,4 @@
name: CI Tasks
name: CI Executor 2
on:
push:
branches: [main, dev]

View File

@ -7,7 +7,6 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
public class AssignmentApplication {
public static void main(String[] args) {
System.out.println("TEST SONAR");
SpringApplication.run(AssignmentApplication.class, args);
}

View File

@ -7,7 +7,6 @@ import org.springframework.web.bind.annotation.RestController;
public class TestController {
@RequestMapping("/")
public String index() {
System.out.println("TEST");
return "Hello World! Executor Pool";
}
}