2019-08-27 11:42:46 +00:00
|
|
|
name: main
|
|
|
|
on:
|
2019-11-30 18:36:10 +00:00
|
|
|
push:
|
2023-01-03 07:08:44 +00:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- cluster
|
2019-11-30 18:36:10 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
2023-01-03 07:08:44 +00:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- cluster
|
2019-11-30 18:36:10 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
2022-04-16 23:56:39 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-08-27 11:42:46 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2020-10-06 12:34:49 +00:00
|
|
|
uses: actions/setup-go@main
|
2019-08-27 11:42:46 +00:00
|
|
|
with:
|
2022-12-09 00:41:22 +00:00
|
|
|
go-version: 1.19.4
|
2019-08-27 11:42:46 +00:00
|
|
|
id: go
|
2021-10-26 19:08:54 +00:00
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@master
|
2019-08-27 11:42:46 +00:00
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
2021-10-26 18:26:39 +00:00
|
|
|
make install-golint
|
|
|
|
make install-errcheck
|
|
|
|
make install-golangci-lint
|
2019-08-27 11:42:46 +00:00
|
|
|
- name: Build
|
|
|
|
run: |
|
2019-11-30 18:36:10 +00:00
|
|
|
export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
|
|
|
|
make check-all
|
|
|
|
git diff --exit-code
|
|
|
|
make test-full
|
|
|
|
make test-pure
|
|
|
|
make test-full-386
|
2022-07-13 13:44:39 +00:00
|
|
|
make victoria-metrics-crossbuild
|
|
|
|
make vmuitils-crossbuild
|
2019-08-27 11:42:46 +00:00
|
|
|
- name: Publish coverage
|
2022-04-08 10:08:09 +00:00
|
|
|
uses: codecov/codecov-action@v3
|
2019-08-27 11:42:46 +00:00
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|
|
|
|
|