Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkrull/gosandbox
A place to develop new ideas in Golang
https://github.com/kkrull/gosandbox
golang sandbox
Last synced: 5 days ago
JSON representation
A place to develop new ideas in Golang
- Host: GitHub
- URL: https://github.com/kkrull/gosandbox
- Owner: kkrull
- Created: 2018-03-15T21:58:31.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-28T15:30:56.000Z (5 months ago)
- Last Synced: 2024-06-28T18:35:47.118Z (5 months ago)
- Topics: golang, sandbox
- Language: Go
- Homepage:
- Size: 234 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Sandbox
A place to try out ideas in Go.
## Continuous Integration
This repository includes an example of how to do some basic Continuous Integration with GitHub
Actions. See `.github/workflows/` for details.## Task automation
Sub-projects each have their own `Makefile`, and there is a top-level `Makefile` that ties them all
together. This is so it's easier to keep them all up to date.### `make` (default task)
Runs a main program or tests, whichever is used in that sub-project.
### `make tidy`
Runs `go mod tidy` in a sub-project.
## Tools
### `gofumpt`
#### Installation
```sh
go install mvdan.cc/gofumpt@latest
```