File tree Expand file tree Collapse file tree 3 files changed +29
-3
lines changed Expand file tree Collapse file tree 3 files changed +29
-3
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ babashka 1.3.182
2
2
binaryen 114
3
3
circleci 0.1.28811
4
4
clojure 1.11.1.1386
5
- golang 1.21.1
6
- golangci-lint 1.54.1
5
+ golang 1.21.3
6
+ golangci-lint 1.55.2
7
7
java temurin-17.0.5+8
8
8
nodejs 18.17.0
9
9
postgres 14.2
Original file line number Diff line number Diff line change
1
+ version : " 0.5"
2
+
3
+ environment :
4
+ - " PG_USER=postgres"
5
+ - " NOCOLOR=1"
6
+ log_location : work/run/output.log
7
+ log_level : debug
8
+ log_configuration :
9
+ no_color : true
10
+
11
+ processes :
12
+ Postgres :
13
+ command : " pg_ctl -D work/db/ -l work/db/logfile start"
14
+ is_daemon : true
15
+ shutdown :
16
+ command : " pg_ctl -D work/db/ stop"
17
+ timeout_seconds : 10 # default 10
18
+ signal : 15 # default 15, but only if command is not defined or empty
19
+ readiness_probe :
20
+ exec :
21
+ command : " pg_isready"
22
+ initial_delay_seconds : 5
23
+ period_seconds : 30
24
+ timeout_seconds : 60
25
+ success_threshold : 1
26
+ failure_threshold : 2
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ install-oapi-codegen: ${GOPATH}/bin/oapi-codegen
84
84
85
85
# non code generation tools
86
86
install-golangci-lint :
87
- ${GO} install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
87
+ ${GO} install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2
88
88
89
89
install-gofumpt :
90
90
${GO} install mvdan.cc/gofumpt@latest
You can’t perform that action at this time.
0 commit comments