-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (44 loc) · 1.07 KB
/
ci.yaml
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
37
38
39
40
41
42
43
44
45
46
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.22
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59.0
args: --config .golangci.yaml
unit-test:
name: unit-test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Check out code
uses: actions/checkout@v2
- name: unit-test
run: |
make test
- uses: codecov/codecov-action@v4
name: Upload the codecov
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
files: ./cover.out
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)