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 10ba89c commit 9bdb838Copy full SHA for 9bdb838
.github/workflows/testing.yml renamed to .github/workflows/go.yml
@@ -2,8 +2,23 @@ name: Run Testing
2
on: push
3
4
jobs:
5
+ lint:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Setup go
9
+ uses: actions/setup-go@v2
10
+ with:
11
+ go-version: '^1.16'
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v2
14
+ - name: Setup golangci-lint
15
+ uses: golangci/golangci-lint-action@v2
16
17
+ version: v1.44.0
18
+ args: --verbose
19
+
20
# Label of the container job
- runner-job:
21
+ test:
22
# You must use a Linux environment when using service containers or container jobs
23
runs-on: ubuntu-latest
24
.github/workflows/lint.yml
0 commit comments