1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
amix-vimrc-mirror/sources_non_forked/vim-go/scripts/docker-test
2017-11-24 14:59:41 +01:00

14 lines
227 B
Bash

#!/bin/sh
#
# Run all tests inside a Docker container
#
set -euC
vimgodir=$(cd -P "$(dirname "$0")/.." > /dev/null && pwd)
cd "$vimgodir"
docker build --tag vim-go-test .
docker run --rm vim-go-test
# vim:ts=2:sts=2:sw=2:et