mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-05 22:32:20 +01:00
57a0cde27c
* split js and go codeql, split test and build, enable matrix for test * checkout before go setup * enable build for PRs as well * update filter
69 lines
1.3 KiB
YAML
69 lines
1.3 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-golint
|
|
make install-errcheck
|
|
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
|