-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (65 loc) · 1.58 KB
/
go.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
58
59
60
61
62
63
64
65
---
name: Go
on:
pull_request:
branches:
- main
- release-*
- feature/*
push:
branches:
- main
- release-*
- feature/*
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
jobs:
test:
name: Unit test
runs-on: [ubuntu-latest]
strategy:
matrix:
go: ['1.19', '1.20', '1.21', '1.22']
steps:
- uses: actions/checkout@v4
- name: Set up Go using version for latest ${{ matrix.go }} version
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
cache-dependency-path: go.sum
- name: Run unit tests
run: |
mkdir -p $(go env GOPATH)
mkdir -p $(go env GOCACHE)
sudo make test
- name: Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: test-results/coverage.out
flags: unit-tests
name: codecov-unit-test
lint:
name: Check lint
runs-on: [ubuntu-latest]
strategy:
matrix:
go: ['1.19', '1.20', '1.21', '1.22']
steps:
- uses: actions/checkout@v4
- name: Set up Go using version for latest ${{ matrix.go }} version
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
cache-dependency-path: go.sum
- name: Run lint
run: |
mkdir -p $(go env GOPATH)
mkdir -p $(go env GOCACHE)
make lint