Skip to content

Commit

Permalink
Add build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mosabua authored and losipiuk committed May 30, 2023
1 parent afb84f8 commit 0969a6c
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Trino client
# Trino Go client

A [Trino](https://trino.io) client for the [Go](https://golang.org) programming language.
A [Trino](https://trino.io) client for the [Go](https://golang.org) programming
language. It enables you to send SQL statements from your Go application to
Trino, and receive the resulting data.

[![Build Status](https://github.com/trinodb/trino-go-client/workflows/ci/badge.svg)](https://github.com/trinodb/trino-go-client/actions?query=workflow%3Aci+event%3Apush+branch%3Amaster)
[![GoDoc](https://godoc.org/github.com/trinodb/trino-go-client?status.svg)](https://godoc.org/github.com/trinodb/trino-go-client)
Expand Down Expand Up @@ -259,7 +261,15 @@ will receive a `[]interface{}` slice, with values of the following types:

## License

As described in the [LICENSE](./LICENSE) file.
Apache License V2.0, as described in the [LICENSE](./LICENSE) file.

## Build

You can build the client code locally and run tests with the following command:

```
go test -v -race -timeout 2m ./...
```

## Contributing

Expand Down

0 comments on commit 0969a6c

Please sign in to comment.