Dmitrii Stepanov
46a04463b2
All checks were successful
DCO action / DCO (pull_request) Successful in 1m34s
Vulncheck / Vulncheck (pull_request) Successful in 3m28s
Build / Build Components (1.21) (pull_request) Successful in 4m21s
Build / Build Components (1.20) (pull_request) Successful in 4m29s
Tests and linters / Staticcheck (pull_request) Successful in 6m7s
Tests and linters / Lint (pull_request) Successful in 6m28s
Tests and linters / gopls check (pull_request) Successful in 6m17s
Tests and linters / Tests (1.20) (pull_request) Successful in 8m23s
Tests and linters / Tests with -race (pull_request) Successful in 8m37s
Tests and linters / Tests (1.21) (pull_request) Successful in 8m53s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
91 lines
1.7 KiB
YAML
91 lines
1.7 KiB
YAML
name: Tests and linters
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.21'
|
|
cache: true
|
|
|
|
- name: Install linters
|
|
run: make lint-install
|
|
|
|
- name: Run linters
|
|
run: make lint
|
|
|
|
tests:
|
|
name: Tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go_versions: [ '1.20', '1.21' ]
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '${{ matrix.go_versions }}'
|
|
cache: true
|
|
|
|
- name: Run tests
|
|
run: make test
|
|
|
|
tests-race:
|
|
name: Tests with -race
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.21'
|
|
cache: true
|
|
|
|
- name: Run tests
|
|
run: go test ./... -count=1 -race
|
|
|
|
staticcheck:
|
|
name: Staticcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.21'
|
|
cache: true
|
|
|
|
- name: Install staticcheck
|
|
run: make staticcheck-install
|
|
|
|
- name: Run staticcheck
|
|
run: make staticcheck-run
|
|
|
|
gopls:
|
|
name: gopls check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.21'
|
|
cache: true
|
|
|
|
- name: Install gopls
|
|
run: make gopls-install
|
|
|
|
- name: Run gopls
|
|
run: make gopls-run
|