We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45461ec commit b288f6dCopy full SHA for b288f6d
.github/workflows/ci.yaml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
15
+ - name: Set up Go
16
+ uses: actions/setup-go@v2
17
+ with:
18
+ go-version: "1.x"
19
20
+ - name: Test
21
+ run: go test -v -coverprofile=coverage.txt -covermode=count ./...
22
23
+ - name: Codecov
24
+ uses: codecov/[email protected]
25
26
+ - name: golangci-lint
27
+ uses: golangci/golangci-lint-action@v2
.travis.yml
0 commit comments