-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (33 loc) · 883 Bytes
/
go-test.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
name: GoTest
on:
pull_request:
push:
branches:
- master
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v1
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: go get -v -t -d ./...
- name: Generate coverage report
run: |
go test -shuffle=on -coverpkg github.com/burgesQ/webfmwk/... -covermode atomic -coverprofile cover.cov -v -race ./...
go tool cover -func cover.cov
- name: Upload coverage report
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cover.cov
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
verbose: true