-
Notifications
You must be signed in to change notification settings - Fork 35
55 lines (52 loc) · 1.35 KB
/
workflow.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
---
name: Go workflow
on:
push:
branches:
- "*"
- "*/*"
- "**"
- "!main"
permissions:
contents: read
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v3
with:
go-version: 1.18
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.46
args: --timeout 5m
test:
name: Test Go ${{ matrix.go }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go: ["1.13", "1.14", "1.15", "1.16", "1.17", "1.18"]
steps:
- name: Go ${{ matrix.go }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Checkout source code
uses: actions/checkout@master
- name: Get dependencies
run: go get -t -v
- name: Run test
if: matrix.os == 'windows-latest'
run: go test -v
- name: Run test coverage
if: matrix.os != 'windows-latest'
run: go test -v -coverprofile=coverage.out -covermode=count
- name: Publish coverage
if: matrix.os != 'windows-latest'
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: bash <(curl -s https://codecov.io/bash)