-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (56 loc) · 1.43 KB
/
draft.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
58
59
60
61
62
63
64
65
66
67
---
name: Draft
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: read
jobs:
release-draft:
name: Draft the Release
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Draft the release
id: drafter
uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
config-name: release-drafter.yaml
disable-autolabeler: true
coverage:
name: Coverage
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum
cache: true
- name: Verify the Go modules
run: go mod verify
- name: Download the Go modules
run: go mod download
- name: Run coverage tests
run: |-
go test -v ./... \
-covermode=count \
-coverprofile=coverage.out
- name: Show coverage report summary
run: |-
go tool cover \
-func=coverage.out
- name: Upload coverage reports
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
flags: unit-tests
name: go-cover