An open API service indexing awesome lists of open source software.

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

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)