https://github.com/pellared/goyek-go-for-automation
https://github.com/pellared/goyek-go-for-automation
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/pellared/goyek-go-for-automation
- Owner: pellared
- License: cc0-1.0
- Created: 2023-04-04T09:27:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-04T09:36:46.000Z (about 3 years ago)
- Last Synced: 2025-02-08T21:29:41.201Z (over 1 year ago)
- Language: Go
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# goyek - using Go for automation
[Presentation](https://docs.google.com/presentation/d/1AQt-a_b4MR3gty-_aZw08bXX708KTQBu9inSncoydyk/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.