Skip to content

Commit 6a54469

Browse files
feat(command): add gofmt
1 parent 5851ba2 commit 6a54469

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ dockerized <command>
3030
- Languages & SDKs
3131
- [dotnet](apps/dotnet/README.md)
3232
- go
33+
- gofmt
3334
- (haskell)
3435
- ghci
3536
- java
3637
- perl
3738
- php
39+
- composer
3840
- lua
3941
- node
4042
- [npm](apps/npm/README.md)

docker-compose.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,17 @@ services:
9999
ghci:
100100
image: "haskell:${GHCI_VERSION}"
101101
entrypoint: [ "ghci" ]
102-
go:
102+
go: &go
103103
image: "golang:${GO_VERSION}"
104104
entrypoint: [ "go" ]
105105
volumes:
106106
- "go_cache:/go/pkg"
107107
environment:
108108
GOOS: "${GOOS:-}"
109109
GOARCH: "${GOARCH:-}"
110+
gofmt:
111+
<<: *go
112+
entrypoint: [ "gofmt" ]
110113
helm:
111114
image: "alpine/helm:${HELM_VERSION}"
112115
http:

0 commit comments

Comments
 (0)