mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
7b8bc8ad59
This is needed because some dependencies uses generics, which have been appeared in Go1.18
This is a follow-up for caf3dd4fa2
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
name: main
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**.md'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@main
|
|
with:
|
|
go-version: 1.18
|
|
id: go
|
|
- name: Code checkout
|
|
uses: actions/checkout@master
|
|
- name: Dependencies
|
|
run: |
|
|
make install-golint
|
|
make install-errcheck
|
|
make install-golangci-lint
|
|
- name: Build
|
|
env:
|
|
GO111MODULE: on
|
|
run: |
|
|
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
|
|
- name: Publish coverage
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
file: ./coverage.txt
|
|
|