Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wcygan/go-practice
go-practice
https://github.com/wcygan/go-practice
Last synced: 2 days ago
JSON representation
go-practice
- Host: GitHub
- URL: https://github.com/wcygan/go-practice
- Owner: wcygan
- Created: 2022-12-09T03:21:34.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-02T04:12:34.000Z (11 months ago)
- Last Synced: 2024-01-02T22:02:29.719Z (11 months ago)
- Language: Go
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Practice
Practicing Data Structures, Algorithms, Concurrency, and more in [Go](https://go.dev/)!
## Table of Contents
- **[Build and Run](#build-and-run)**
- **[References](#references)**## Build and Run
From the go-practice root directory, `Practice/go-practice`, you can execute these commands:
### Execute all tests:
```
$ go test ./...
```### Execute a specific test (with coverage for the entire project):
```
$ go test ./... -run TestName -cover
```Tip: adding the `-cover` flag tells the test runner to keep track of observed program coverage.
## References
I'm using the following material as a reference:
1. [Learn Go with Tests](https://quii.gitbook.io/learn-go-with-tests/)
2. [The Go Programming Language](https://www.gopl.io/)
3. [Concurrency in Go](https://www.oreilly.com/library/view/concurrency-in-go/9781491941294/)
4. [Network Programming with Go](https://nostarch.com/networkprogrammingwithgo)
5. [Distributed Services with Go](https://pragprog.com/titles/tjgo/distributed-services-with-go/)