We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd49614 commit d442c1bCopy full SHA for d442c1b
.github/workflows/tests.yml
@@ -0,0 +1,22 @@
1
+name: PR
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ main ]
6
7
+jobs:
8
+ tests:
9
+ name: go tests
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Install Go
13
+ uses: actions/setup-go@v2
14
+ with:
15
+ go-version: 1.17.x
16
+ - name: Check out code into the Go module directory
17
+ uses: actions/checkout@v2
18
+ - name: run tests
19
+ run: |
20
+ export GOPATH=$HOME/go
21
+ export PATH=$PATH:$GOPATH/bin
22
+ go tests ./... -v
.travis.yml
Makefile
0 commit comments