memgraph/tests/drivers/go/v4/run.sh
2020-10-23 18:02:33 +02:00

15 lines
242 B
Bash
Executable File

#!/bin/bash -e
# check if go is installed
for i in go; do
if ! which $i >/dev/null; then
echo "Please install $i!"
exit 1
fi
done
go get github.com/neo4j/neo4j-go-driver/neo4j
go run docs_how_to_query.go
go run transactions.go