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 fdb9e84 commit 2542387Copy full SHA for 2542387
.github/workflows/go.yml
@@ -1,7 +1,8 @@
1
name: Go
2
+
3
on: [push]
-jobs:
4
5
+jobs:
6
build:
7
name: Build
8
runs-on: ubuntu-latest
@@ -17,12 +18,12 @@ jobs:
17
18
with:
19
path: go/src/github.com/rightmesh/awdb
20
- - name: Install golint
21
+ - name: Lint Project
22
run: |
23
export GOPATH=$(realpath ../../../..)
24
go get golang.org/x/lint/golint
25
+ $GOPATH/bin/golint ./...
26
27
- name: Build project
28
- export GOPATH=$(realpath ../../../..)
- make
29
+ go build ./...
0 commit comments