generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 95
57 lines (57 loc) · 1.33 KB
/
ci.yml
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
47
48
49
50
51
52
53
54
55
56
57
name: Lint and unit tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
golangci:
name: lint
needs: [tidy]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.21'
cache: true
cache-dependency-path: go.sum
- name: golangci-lint
uses: golangci/[email protected]
with:
version: latest
- name: Run golangci-lint
run: make check
tidy:
name: tidy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.21'
cache: true
cache-dependency-path: go.sum
- name: go mod tidy
run: make tidy
codecov:
name: codecov
needs: [ tidy ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: true
cache-dependency-path: go.sum
- name: test
run: make test
- name: Upload covergae to Codecov
if: github.repository == 'meshery/meshkit'
uses: codecov/codecov-action@v3
with:
files: ./coverage.out
flags: unittests