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 b287391 commit 6e28093Copy full SHA for 6e28093
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
6
+jobs:
7
+ lint:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v2
12
+ - name: Lint
13
+ uses: magefile/mage-action@v1
14
+ with:
15
+ version: latest
16
+ args: lint
17
18
+ test:
19
20
21
+ - uses: actions/checkout@v2
22
+ - uses: actions/cache@v2
23
24
+ path: ~/go/pkg/mod
25
+ key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
26
+ restore-keys: |
27
+ ${{ runner.os }}-go-
28
+ - uses: actions/setup-go@v2
29
+ - name: test
30
31
32
33
+ args: test
0 commit comments