mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-23 21:43:33 -06:00
10 lines
229 B
YAML
10 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 ./...
|