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 bb25a7d commit 4b801bdCopy full SHA for 4b801bd
.github/workflows/build.yml
@@ -7,6 +7,17 @@ on:
7
branches: [ master ]
8
9
jobs:
10
+ lint:
11
+ name: Lint
12
+ runs-on: ubuntu-18.04
13
+ steps:
14
+ - name: Check out code
15
+ uses: actions/checkout@v2
16
+
17
+ - name: Check code quality
18
+ uses: golangci/golangci-lint-action@v1
19
+ with:
20
+ version: v1.27
21
22
build:
23
name: Build
@@ -37,7 +48,3 @@ jobs:
37
48
make test
38
49
make build
39
50
40
- - name: Check code quality
41
- uses: golangci/golangci-lint-action@v1
42
- with:
43
- version: v1.27
0 commit comments