https://github.com/ericbutera/code-challenges-go
code challenges, golang edition
https://github.com/ericbutera/code-challenges-go
Last synced: 4 months ago
JSON representation
code challenges, golang edition
- Host: GitHub
- URL: https://github.com/ericbutera/code-challenges-go
- Owner: ericbutera
- Created: 2022-03-18T10:07:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-16T01:20:46.000Z (5 months ago)
- Last Synced: 2025-02-16T02:22:29.251Z (5 months ago)
- Language: Go
- Size: 1.05 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# code-challenges-go
code challenges, golang edition
## pre-requisite steps
```sh
# ensures all dependencies are met
make setup
```## quickstart
```sh
go test
```## run in container
Not into installing things on the host? You can also run all the tests in a container.
```sh
make container-run
```## resources
- [table driven tests](https://github.com/golang/go/wiki/TableDrivenTests)
- [effective go](https://go.dev/doc/effective_go#introduction)
- [learn go with tests](https://quii.gitbook.io/learn-go-with-tests/go-fundamentals/hello-world)
- [go by example](https://gobyexample.com/)
- [testify](https://github.com/stretchr/testify)