-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (67 loc) · 1.78 KB
/
cover.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
66
67
68
69
70
71
72
73
74
75
76
77
name: cover
on:
workflow_call:
inputs:
go:
description: "Go version"
default: "oldstable"
required: false
type: string
submodules:
description: "Whether to checkout submodules"
default: true
required: false
type: boolean
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ inputs.go }}
cache: false
- name: Get Go environment
id: go-env
run: |
echo "cache=$(go env GOCACHE)" >> $GITHUB_ENV
echo "modcache=$(go env GOMODCACHE)" >> $GITHUB_ENV
- name: Set up cache
uses: actions/cache/restore@v4
with:
path: |
${{ env.cache }}
${{ env.modcache }}
key: coverage-${{ runner.os }}-${{ runner.arch }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
coverage-${{ runner.os }}-${{ runner.arch }}-go-
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: ${{ inputs.submodules }}
- name: Run tests with coverage
run: make coverage
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: coverage
path: profile.out
if-no-files-found: error
retention-days: 1
send:
runs-on: ubuntu-latest
needs:
- run
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: coverage
- name: Send coverage
uses: codecov/codecov-action@v5
with:
files: profile.out
fail_ci_if_error: true