wren-launcher/README.md
# mac
go build main.go
# windows
env GOOS=windows GOARCH=amd64 go build main.go
make check # Run all checks (fmt, vet, lint)
make test # Run tests
make fmt # Format code
make vet # Run go vet
make lint # Run golangci-lint
This project uses GitHub Actions for CI/CD. The workflow runs automatically on:
launcher: Runs all checks and tests when PR is labeledLint and Test:
Security Scan:
# Update a single dependency
go get example.com/some/package@latest
# Update all dependencies
go get -u ./...
# Clean up and ensure the module files are correct
go mod tidy
# Verify the updates
go test ./...