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 ca3a5a8 commit a77ba96Copy full SHA for a77ba96
.github/workflows/ci.yml
@@ -9,9 +9,21 @@ on:
9
10
jobs:
11
12
+ lint:
13
+ name: Lint
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+
18
+ - name: golangci-lint
19
+ run: |
20
+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s
21
+ ./bin/golangci-lint run -v
22
23
build:
24
name: Build and Run
25
runs-on: ${{ matrix.os }}
26
+ needs: lint
27
strategy:
28
fail-fast: true
29
matrix:
0 commit comments