forked from uber-go/fx
-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (40 loc) · 911 Bytes
/
go.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
name: Go
on:
push:
branches: ['*']
tags: ['v*']
pull_request:
branches: ['*']
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
go: ["1.20.x", "1.21.x"]
include:
- go: 1.21.x
os: "ubuntu-latest"
latest: true
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache: true
- name: Download Dependencies
run: go mod download
- name: Lint
if: matrix.latest
run: make lint
- name: Test
run: make cover
- name: Test documentation
run: make cover COVER_MODULES=./docs
if: matrix.latest
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v3