2019-08-27 13:42:46 +02:00
|
|
|
name: main
|
|
|
|
on:
|
2019-11-30 19:36:10 +01:00
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
2022-04-17 01:56:39 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-08-27 13:42:46 +02:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2020-10-06 14:34:49 +02:00
|
|
|
uses: actions/setup-go@main
|
2019-08-27 13:42:46 +02:00
|
|
|
with:
|
2022-11-08 16:43:59 +01:00
|
|
|
go-version: 1.19.3
|
2019-08-27 13:42:46 +02:00
|
|
|
id: go
|
2021-10-26 21:08:54 +02:00
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@master
|
2019-08-27 13:42:46 +02:00
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
2021-10-26 20:26:39 +02:00
|
|
|
make install-golint
|
|
|
|
make install-errcheck
|
|
|
|
make install-golangci-lint
|
2019-08-27 13:42:46 +02:00
|
|
|
- name: Build
|
|
|
|
run: |
|
2019-11-30 19:36:10 +01: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 15:44:39 +02:00
|
|
|
make victoria-metrics-crossbuild
|
|
|
|
make vmuitils-crossbuild
|
2019-08-27 13:42:46 +02:00
|
|
|
- name: Publish coverage
|
2022-04-08 12:08:09 +02:00
|
|
|
uses: codecov/codecov-action@v3
|
2019-08-27 13:42:46 +02:00
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|
|
|
|
|