You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
253 B

  1. help:
  2. @echo "Available targets:"
  3. @echo "- test: run tests"
  4. @echo "- installdependencies: installs dependencies declared in dependencies.txt"
  5. installdependencies:
  6. cat dependencies.txt | xargs go get
  7. test: installdependencies
  8. go test -i && go test