mirror of
https://github.com/gofiber/fiber.git
synced 2025-07-27 12:40:11 +00:00
16 lines
586 B
YAML
16 lines
586 B
YAML
steps:
|
|
- run: |
|
|
if [ -d vendor ] || go list -m -mod=readonly all; then
|
|
echo "Dependencies already present"
|
|
else
|
|
go mod tidy && go mod download && go mod vendor
|
|
fi
|
|
- run: |
|
|
go install gotest.tools/gotestsum@latest
|
|
go install golang.org/x/vuln/cmd/govulncheck@latest
|
|
go install mvdan.cc/gofumpt@latest
|
|
go install github.com/tinylib/msgp@latest
|
|
go install github.com/vburenin/ifacemaker@975a95966976eeb2d4365a7fb236e274c54da64c
|
|
go install github.com/dkorunic/betteralign/cmd/betteralign@latest
|
|
- run: go mod tidy
|