We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb1dd01 commit 2cff0c9Copy full SHA for 2cff0c9
.circleci/config.yml
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - master
5
+ pull_request:
6
+name: CI
7
+jobs:
8
+ test:
9
+ name: Test
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v2
14
+ - name: Init Hermit
15
+ run: ./bin/hermit env -r >> $GITHUB_ENV
16
+ - name: Test
17
+ run: go test ./...
18
+ lint:
19
+ name: Lint
20
21
22
23
24
25
26
+ - name: golangci-lint
27
+ run: golangci-lint run
0 commit comments