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 3d08b36 commit 313f419Copy full SHA for 313f419
.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
20
name: Build
21
strategy:
22
matrix:
23
- go: [ '1.17.x', '1.16.x' ]
+ go: [ '1.18.x', '1.17.x' ]
24
os: [ ubuntu-latest ]
25
26
runs-on: ${{ matrix.os }}
.github/workflows/label-actions.yml
@@ -0,0 +1,26 @@
1
+name: 'Label'
2
+
3
+on:
4
+ pull_request:
5
+ types: [labeled]
6
7
+jobs:
8
+ build:
9
+ name: Run Build
10
+ if: ${{ github.event.label.name == 'run-build' }}
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v2
16
17
+ - name: Setup Go
18
+ uses: actions/setup-go@v2
19
+ with:
+ go-version: '1.18.x'
+ - name: Test
+ run: go test ./... -race -coverprofile=coverage.txt -covermode=atomic
+ - name: Coverage
+ run: bash <(curl -s https://codecov.io/bash)
0 commit comments