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.
2 parents 29a6518 + 81f9135 commit 9116e0cCopy full SHA for 9116e0c
.github/workflows/c3pm.yml
@@ -0,0 +1,34 @@
1
+name: c3pm CI
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Setup Go
12
+ uses: actions/setup-go@v2.0.3
13
+ - name: Build project
14
+ working-directory: ./
15
+ run: go build
16
+ test:
17
18
19
20
21
22
+ - name: Test project
23
24
+ run: go test ./...
25
+ lint:
26
27
28
29
+ - name: Lint project
30
+ uses: golangci/golangci-lint-action@v2
31
+ with:
32
+ version: v1.28
33
+ args: -E bodyclose -E gofmt
34
0 commit comments