mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-01-10 16:40:12 +00:00
11 lines
229 B
YAML
11 lines
229 B
YAML
|
image: golang:latest
|
||
|
pipelines:
|
||
|
default:
|
||
|
- step:
|
||
|
script:
|
||
|
- go version
|
||
|
- go vet ./...
|
||
|
- go test -race ./...
|
||
|
- go test -cover ./...
|
||
|
- go test -bench . -benchmem ./...
|