-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (33 loc) · 878 Bytes
/
ci.yml
File metadata and controls
34 lines (33 loc) · 878 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
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
cache: true
- name: Go mod tidy (no diff)
run: go mod tidy && git diff --exit-code
- name: Lint
uses: golangci/golangci-lint-action@v7
with:
version: latest
args: --timeout=5m
- name: Test (race + cover)
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: '1.23'
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage.out