mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-26 15:50:47 -05:00
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.8.4 to 1.9.0. - [Release notes](https://github.com/stretchr/testify/releases) - [Commits](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) --- updated-dependencies: - dependency-name: github.com/stretchr/testify dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
435 B
YAML
28 lines
435 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
default:
|
|
deps: [test]
|
|
|
|
lint:
|
|
desc: Checks code style
|
|
cmds:
|
|
- gofmt -d -s *.go
|
|
- go vet ./...
|
|
silent: true
|
|
|
|
lint-fix:
|
|
desc: Fixes code style
|
|
cmds:
|
|
- gofmt -w -s *.go
|
|
|
|
test:
|
|
desc: Runs go tests
|
|
cmds:
|
|
- go test -race ./...
|
|
|
|
test-coverage:
|
|
desc: Runs go tests and calculates test coverage
|
|
cmds:
|
|
- go test -race -coverprofile=c.out ./...
|