VictoriaMetrics/.github/workflows/main.yml

52 lines
1.1 KiB
YAML
Raw Normal View History

2019-08-27 11:42:46 +00:00
name: main
on:
2019-11-30 18:36:10 +00:00
push:
branches:
- master
- cluster
2019-11-30 18:36:10 +00:00
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
branches:
- master
- cluster
2019-11-30 18:36:10 +00:00
paths-ignore:
- 'docs/**'
- '**.md'
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:
go-version: 1.19.4
2019-08-27 11:42:46 +00:00
id: go
- name: Code checkout
uses: actions/checkout@master
2019-08-27 11:42:46 +00:00
- name: Dependencies
run: |
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
make victoria-metrics-crossbuild
make vmuitils-crossbuild
2019-08-27 11:42:46 +00:00
- name: Publish coverage
uses: codecov/codecov-action@v3
2019-08-27 11:42:46 +00:00
with:
file: ./coverage.txt