Fix the lint action after upgrade (#790)

This commit is contained in:
Cosmin Cojocar 2022-03-14 14:19:29 +01:00 committed by GitHub
parent 8af0af7611
commit b99b5f7838
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,17 +7,7 @@ on:
branches:
- master
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
test:
needs: [golangci]
strategy:
matrix:
go_version:
@ -39,6 +29,10 @@ jobs:
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Run Tests
run: make test
coverage: