File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ push :
7
+ branches :
8
+ - master
9
+ jobs :
10
+ test :
11
+ strategy :
12
+ matrix :
13
+ os : [ubuntu-latest, macos-latest, windows-latest]
14
+ go : ["1.14", "1.15"]
15
+ runs-on : ${{ matrix.os }}
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - uses : actions/setup-go@v2
19
+ with :
20
+ go-version : ${{ matrix.go }}
21
+ - run : |
22
+ go test -cover -coverprofile coverage.txt -race -v ./...
23
+ - uses : codecov/codecov-action@v1
Original file line number Diff line number Diff line change 3
3
[ ![ codecov] ( https://codecov.io/gh/mattn/go-shellwords/branch/master/graph/badge.svg )] ( https://codecov.io/gh/mattn/go-shellwords )
4
4
[ ![ Build Status] ( https://travis-ci.org/mattn/go-shellwords.svg?branch=master )] ( https://travis-ci.org/mattn/go-shellwords )
5
5
[ ![ GoDoc] ( https://godoc.org/github.com/mattn/go-shellwords?status.svg )] ( http://godoc.org/github.com/mattn/go-shellwords )
6
+ [ ![ ci] ( https://github.com/mattn/go-shellwords/ci/badge.svg )] ( https://github.com/mattn/go-shellwords/actions )
6
7
7
8
Parse line as shell words.
8
9
You can’t perform that action at this time.
0 commit comments