forked from TrueCloudLab/frostfs-node
[#1016] forgejo: Add gopls check step
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
d6534fd755
commit
46a04463b2
1 changed files with 18 additions and 0 deletions
|
@ -71,3 +71,21 @@ jobs:
|
||||||
|
|
||||||
- name: Run staticcheck
|
- name: Run staticcheck
|
||||||
run: make staticcheck-run
|
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
|
||||||
|
|
Loading…
Reference in a new issue