I don’t know why the ability to retrieve the next and previous post URL isn’t built-in to WordPress but here is a one-liner to get this information from the current post

Previous Post:

echo get_permalink(get_adjacent_post(false,'',false));

Next Post:

echo get_permalink(get_adjacent_post(false,'',true));