Like previously mentioned, you need to write some tests for your requests in order to see these being executed in the Collection Runner. Without these, all the runner is doing, is just sending requests to the endpoints specified in your collection.
An example of a basic status code check:
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
This can be added to the Tests
section of the request builder:
More information can be found in the Postman Documentation about writing tests in your requests. Some more basic test examples can also be found on this page.
Postman have recently added the ability to create tests at the Collection and sub-folder level, to help to reduce the amount of test repetition - Checking for a response status code is a potential candidate that could be applied at the Collection level and be run against all of your requests, from a single location. More details can be found in this Postman blog post.