File tree Expand file tree Collapse file tree 3 files changed +33
-23
lines changed Expand file tree Collapse file tree 3 files changed +33
-23
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+
9
+ jobs :
10
+ test :
11
+ name : Test
12
+ runs-on : ubuntu-latest
13
+ strategy :
14
+ matrix :
15
+ go : ['1.14', '1.15' ]
16
+ steps :
17
+ - name : Checkout code
18
+ uses : actions/checkout@v2
19
+ - name : Setup Go
20
+ uses : actions/setup-go@v2
21
+ with :
22
+ go-version : ${{ matrix.go }}
23
+ - name : Debug Vim version
24
+ run : vim --version
25
+ - name : Install gosumcheck
26
+ run : env GO111MODULE=off go get github.com/haya14busa/gosum/cmd/gosumcheck
27
+ - name : Test
28
+ run : go test -v -race ./...
29
+ - name : Check code generation diff
30
+ run : bash go/generate.sh && ! git diff | grep '^'
31
+ - name : Check gosumcheck
32
+ run : gosumcheck ./...
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Vim Script Parser written in Go
2
2
3
- [ ![ Build Status] ( https://travis-ci.org /vim-jp/go-vimlparser.svg?branch=master )] ( https://travis-ci.org /vim-jp/go-vimlparser )
3
+ [ ![ CI Status] ( https://github.com /vim-jp/go-vimlparser/workflows/CI/badge .svg )] ( https://github.com /vim-jp/go-vimlparser/actions )
4
4
[ ![ codecov] ( https://codecov.io/gh/vim-jp/go-vimlparser/branch/master/graph/badge.svg )] ( https://codecov.io/gh/vim-jp/go-vimlparser )
5
5
[ ![ Sourcegraph] ( https://sourcegraph.com/github.com/vim-jp/go-vimlparser/-/badge.svg )] ( https://sourcegraph.com/github.com/vim-jp/go-vimlparser?badge )
6
6
[ ![ GoDoc] ( https://godoc.org/github.com/vim-jp/go-vimlparser?status.svg )] ( https://godoc.org/github.com/vim-jp/go-vimlparser )
You can’t perform that action at this time.
0 commit comments