-
-
Notifications
You must be signed in to change notification settings - Fork 30
43 lines (35 loc) · 865 Bytes
/
ci.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
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
strategy:
matrix:
go: ['1.17']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Prepare checkout
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v4
- name: Dependencies
run: |
go version
go get -v -t -d ./...
go get -u golang.org/x/lint/golint
- name: Lint
run: golint -set_exit_status=1 ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test -v -coverprofile coverage.txt -covermode atomic ./...
- name: Coverage
uses: codecov/codecov-action@v3