Skip to content

Instantly share code, notes, and snippets.

@s1moe2
Created April 23, 2022 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s1moe2/525abf98af09594dcad71519d4cc7a99 to your computer and use it in GitHub Desktop.
Save s1moe2/525abf98af09594dcad71519d4cc7a99 to your computer and use it in GitHub Desktop.
Run Go tests in ephemeral Docker container
docker run --rm \
--name test-acme \
-v "$(pwd)":/usr/app \
golang:1.18 \
bash -c "cd /usr/app && go test -v ./..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment