Ekaterina Lebedeva
2be1aa781d
All checks were successful
DCO action / DCO (pull_request) Successful in 1m4s
Tests and linters / Run gofumpt (pull_request) Successful in 59s
Vulncheck / Vulncheck (pull_request) Successful in 2m24s
Tests and linters / Staticcheck (pull_request) Successful in 2m27s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m43s
Build / Build Components (pull_request) Successful in 2m50s
Tests and linters / gopls check (pull_request) Successful in 3m2s
Tests and linters / Lint (pull_request) Successful in 3m10s
Tests and linters / Tests (pull_request) Successful in 4m36s
Tests and linters / Tests with -race (pull_request) Successful in 6m24s
`gofumpt` always returns an exit code of 0, even when it finds misformatted files. To make `fumpt` action behave as expected we need to check if `gofumpt` changed any files. Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
111 lines
2.1 KiB
YAML
111 lines
2.1 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.23'
|
|
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.22', '1.23' ]
|
|
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.22'
|
|
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.23'
|
|
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.22'
|
|
cache: true
|
|
|
|
- name: Install gopls
|
|
run: make gopls-install
|
|
|
|
- name: Run gopls
|
|
run: make gopls-run
|
|
|
|
fumpt:
|
|
name: Run gofumpt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.23'
|
|
cache: true
|
|
|
|
- name: Install gofumpt
|
|
run: make fumpt-install
|
|
|
|
- name: Run gofumpt
|
|
run: |
|
|
make fumpt
|
|
git diff --exit-code --quiet
|