-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (45 loc) · 1.18 KB
/
main.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
name: Go package
on: [push]
jobs:
build:
name: 'Go Build (1.21)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Install dependencies
run: go get .
- name: Build
run: go build ./...
static:
name: 'Go Static (1.21)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- run: 'go install honnef.co/go/tools/cmd/staticcheck@latest'
- run: 'go vet ./...'
- run: 'staticcheck ./...'
test:
name: 'Go Test (1.21)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Install dependencies
run: go get .
- name: Test
run: go test -cover -vet all -coverprofile cover.out .
- name: Coverage report
run: go tool cover -html ./cover.out -o cover.html
- name: Archive coverage report
uses: actions/upload-artifact@v4
with:
name: coverage.html
path: ./cover.html