-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (31 loc) · 731 Bytes
/
ci.yaml
File metadata and controls
36 lines (31 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.24.3
uses: actions/setup-go@v1
with:
go-version: 1.24.3
- name: Check out source code
uses: actions/checkout@v1
- name: Generate
env:
GOPROXY: "off"
run: make generate
- name: Build
env:
GOPROXY: "off"
run: make build
- name: Test
env:
GOPROXY: "off"
run: make testcover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.txt
fail_ci_if_error: true
verbose: false