Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xmlking/go-workspace
Experimenting with golang 1.18 workspaces, fuzzing and generics
https://github.com/xmlking/go-workspace
beta fuzzing generics go118 golang workspaces
Last synced: about 2 months ago
JSON representation
Experimenting with golang 1.18 workspaces, fuzzing and generics
- Host: GitHub
- URL: https://github.com/xmlking/go-workspace
- Owner: xmlking
- Created: 2021-12-15T19:52:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-30T14:14:32.000Z (over 1 year ago)
- Last Synced: 2024-06-22T08:55:06.930Z (7 months ago)
- Topics: beta, fuzzing, generics, go118, golang, workspaces
- Language: Go
- Homepage:
- Size: 3.29 MB
- Stars: 16
- Watchers: 3
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-workspace
Experimenting with **golang-1.18** _multi-module workspaces_
[![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/xmlking/go-workspace)](https://github.com/xmlking/go-workspace/blob/main/go.mod)
[![Go](https://github.com/xmlking/go-workspace/actions/workflows/go.yml/badge.svg)](https://github.com/xmlking/go-workspace/actions/workflows/go.yml)## Install
### Working with golang 1.18
```shell
brew install go
$ go version
go version go1.18 darwin/arm64
```## Run
```shell
# run generate first
go generate ./...
```###
```shell
# root module
go run ./...
go test -v ./...
go test -v -fuzz=Fuzz ./internal
# lib module
go test -v ./lib/...
# app modules
go run ./cmd/app1/...
go run ./cmd/app2/...
```## Build
```shell
go generate ./...
go build -v .
# check SBOM
go version -m go-workspace
# run binary
./go-workspace
```
### Workspace commands```
$ go help work
Usage:go work [arguments]
The commands are:
edit edit go.work from tools or scripts
init initialize workspace file
sync sync workspace build list to modules
use add modules to workspace file```
Run `go work use -r ./` to recursively add directories in the argument directory with a go.mod file to your workspace.
If a directory doesn’t have a go.mod file, or no longer exists, the use directive for that directory is removed from your go.work file.```shell
# recursively add directories to go.work
go work use -r .
# pushes the dependencies in the go.work file back into the go.mod files of each workspace module.
go work sync
# provides a command-line interface for editing go.work, for use primarily by tools or scripts.
go work edit
# `go mod` examples
go mod download
go mod graph
go mod tidy
go mod verify
go work sync
go mod why -m github.com/ssoroka/slice
```### Project structure
```
.
├── README.md
├── cmd
│ ├── app1
│ │ ├── go.mod
│ │ └── main.go
│ └── app2
│ ├── go.mod
│ └── main.go
├── go.work
├── go.work.sum
└── lib
├── binaryheap
│ ├── binaryheap.go
│ └── binaryheap_test.go
├── filter
│ ├── filter.go
│ └── filter_test.go
└── go.mod```
## Reference
- [Proposal: Multi-Module Workspaces](https://go.googlesource.com/proposal/+/master/design/45713-workspace.md)
- [Get familiar with workspaces](https://go.dev/blog/get-familiar-with-workspaces?utm_source=GO&utm_medium=social+&utm_campaign=blog+promo)