https://github.com/pellared/build-go-in-go
https://github.com/goyek/goyek
https://github.com/pellared/build-go-in-go
Last synced: about 1 year ago
JSON representation
https://github.com/goyek/goyek
- Host: GitHub
- URL: https://github.com/pellared/build-go-in-go
- Owner: pellared
- License: unlicense
- Created: 2023-02-20T16:21:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-22T07:40:12.000Z (over 3 years ago)
- Last Synced: 2025-02-08T21:29:40.963Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Build Go in Go
[Presentation](https://docs.google.com/presentation/d/12YZieqsmvyYPg69LiFzwCKSF-Y0GAaDH2roMCYnVPbQ/edit?usp=sharing).
This repository demonstrates a very basic build automation for a Go project created in:
- **[Make](./make)**
- **[Mage](./mage)**
- **[goyek](./goyek)**
## Build Workflow
The build workflow, called `all`, consists of the following steps:
### `fmt`
Simply runs `go fmt ./...`.
This target is imported as it can be reused by multiple projects.
### `test`
Runs tests and generates code coverage even if any test fails.