From c8d2f31a65715be1d05cec105d47a07009d80be7 Mon Sep 17 00:00:00 2001 From: Ariejan de Vroom Date: Wed, 13 Aug 2014 11:49:33 +0200 Subject: [PATCH] Add Guardfile for continuious testing --- Guardfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Guardfile diff --git a/Guardfile b/Guardfile new file mode 100644 index 0000000..713db11 --- /dev/null +++ b/Guardfile @@ -0,0 +1,9 @@ +# A sample Guardfile +# More info at https://github.com/guard/guard#readme + +# Add files and commands to this file, like the example: +# watch(%r{file/path}) { `command(s)` } +# +guard 'go', test: true, server: 'cpu.go' do + watch(%r{\.go$}) +end