-
Notifications
You must be signed in to change notification settings - Fork 7
57 lines (47 loc) · 1.2 KB
/
main.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
47
48
49
50
51
52
53
54
55
56
57
name: Main CI WorkFlow
on:
push:
branches:
- main
tags:
pull_request:
env:
GO_VERSION: '1.16'
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Dependencies
run: go get -v -t -d ./...
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
unit-tests:
runs-on: ubuntu-22.04
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Dependencies
run: go get -v -t -d ./...
- name: Test and Coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic -coverpkg=./... ./...
- name: Publish Unit Test Coverage
uses: codecov/codecov-action@v3
with:
name: swag
flags: all
files: ./coverage.out
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}