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.
2 parents 17e444e + 743a23b commit aa95769Copy full SHA for aa95769
.gtihub/workflows/main.yml
@@ -0,0 +1,26 @@
1
+name: Test
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ master ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v3
13
14
+ - name: Setup Go
15
+ uses: actions/setup-go@v3
16
+ with:
17
+ go-version: '1.19.5'
18
19
+ - name: Install dependencies
20
+ run: go get .
21
22
+ - name: Build
23
+ run: go build -v ./...
24
25
+ - name: Test
26
+ run: go test -v ./...
.travis.yml
0 commit comments