12 lines
119 B
Bash
Executable file
12 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function ci:test {
|
|
go test "${@}"
|
|
}
|
|
|
|
function go {
|
|
docker-compose run --rm app go "${@}"
|
|
}
|
|
|
|
eval "$@"
|