This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (69 loc) · 2.04 KB
/
push.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
on: push
name: Build and test
jobs:
go-version:
name: Lookup go versions
runs-on: ubuntu-latest
outputs:
latest: ${{ steps.go-version.outputs.latest }}
matrix: ${{ steps.go-version.outputs.matrix }}
module: ${{ steps.go-version.outputs.module }}
steps:
- uses: actions/checkout@v4
- uses: arnested/go-version-action@v1
id: go-version
go_generate:
name: Check generated code is up to date
needs: go-version
runs-on: ubuntu-latest
env:
workdir: go/src/${{ needs.go-version.outputs.module }}
steps:
- uses: actions/checkout@v4
with:
path: ${{env.workdir}}
- name: Install Go ${{ needs.go-version.outputs.latest }}.x
uses: WillAbides/[email protected]
with:
go-version: ${{ needs.go-version.outputs.latest }}.x
ignore-local: true
- name: Go version
run: go version
- name: go generate
env:
GO111MODULE: 'on'
GOPATH: ${{ github.workspace }}/go
working-directory: ${{env.workdir}}
run: go generate -x
- name: Diff after go generate
working-directory: ${{env.workdir}}
run: git diff --exit-code
- name: Determine next version
working-directory: ${{env.workdir}}
run: |
go install golang.org/x/exp/cmd/gorelease@latest
gorelease
build_and_test:
name: Build and test
needs: go-version
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ${{ fromJSON(needs.go-version.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- name: Install Go ${{ matrix.go-version }}.x
uses: WillAbides/[email protected]
with:
go-version: ${{ matrix.go-version }}.x
ignore-local: true
- name: Go version
run: go version
- name: go test
env:
GO111MODULE: 'on'
run: go test -v -race -cover -covermode=atomic -coverprofile=coverage.txt ./...
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
flags: go${{ matrix.go-version }}