Update CI script
This commit is contained in:
parent
eebbcab38f
commit
e877362f62
3 changed files with 23 additions and 5 deletions
|
@ -1,8 +1,21 @@
|
|||
image: golang:latest
|
||||
|
||||
stages:
|
||||
- test
|
||||
- validate
|
||||
- build
|
||||
|
||||
fmt:
|
||||
stage: validate
|
||||
script:
|
||||
- gofmt -l -s -e .
|
||||
- exit $(gofmt -l -s -e . | wc -l)
|
||||
|
||||
vet:
|
||||
stage: validate
|
||||
script:
|
||||
- go vet -composites=false ./...
|
||||
|
||||
test:
|
||||
image: golang:latest
|
||||
stage: test
|
||||
stage: validate
|
||||
script:
|
||||
- go test -v ./...
|
||||
- go test -race -v ./...
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
v1.4.2 (WIP)
|
||||
- Add SetDoneFunc to TreeView
|
||||
- Fix rendering issues with TextViews which have their background color set to
|
||||
ColorDefault
|
||||
|
||||
v1.4.1 (2020-01-23)
|
||||
- Add ProgressBar widget
|
||||
- Add Application.RingBell
|
||||
|
|
|
@ -12,7 +12,7 @@ import (
|
|||
)
|
||||
|
||||
type company struct {
|
||||
Name string `json:name`
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
func main() {
|
||||
|
|
Loading…
Reference in a new issue