mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
9c62391a5c
These targets became obsolete after ec2c82e800
66 lines
1.2 KiB
YAML
66 lines
1.2 KiB
YAML
name: main - test
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- cluster
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "**.md"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- cluster
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "**.md"
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Code checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19.5
|
|
check-latest: true
|
|
cache: true
|
|
|
|
- name: Dependencies
|
|
run: |
|
|
make install-golangci-lint
|
|
make check-all
|
|
git diff --exit-code
|
|
|
|
test:
|
|
needs: lint
|
|
strategy:
|
|
matrix:
|
|
scenario: ["test-full", "test-pure", "test-full-386"]
|
|
name: test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Code checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19.5
|
|
check-latest: true
|
|
cache: true
|
|
|
|
- name: run tests
|
|
run: |
|
|
make ${{ matrix.scenario}}
|
|
|
|
- name: Publish coverage
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
file: ./coverage.txt
|