-
-
Notifications
You must be signed in to change notification settings - Fork 4
37 lines (30 loc) · 724 Bytes
/
Copy pathci.yml
File metadata and controls
37 lines (30 loc) · 724 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
37
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Build
run: go build -v ./...
env:
GO111MODULE: on
- name: Run coverage
run: go test -coverprofile=coverage.txt -covermode=atomic -timeout 40m -v ./...
env:
GO111MODULE: on
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.txt
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true