learn-go-with-tests/run

12 lines
119 B
Plaintext
Raw Normal View History

2022-01-26 12:47:07 +00:00
#!/bin/bash
2022-01-26 13:32:12 +00:00
function ci:test {
go test "${@}"
}
2022-01-26 12:47:07 +00:00
function go {
docker-compose run --rm app go "${@}"
}
eval "$@"