Due to #186 rules_oci requires manual testing on Darwin before every release. Since rules_oci is not docker specific, we want to get maximum coverage for all the runtimes out there. In order to do that rules_oci ought to be tested against runtimes such as podman to diversify the coverage before every release for now.
Just copy-paste this command into the terminal to run the tests
for dir in "." "e2e/smoke" "e2e/platforms" "e2e/pull"; do
(echo "## $dir"; cd "$dir" && bazel test //...)
done