Skip to content

fix(sevsnp): add report integrity validation back #3212

fix(sevsnp): add report integrity validation back

fix(sevsnp): add report integrity validation back #3212

Workflow file for this run

# Go Linters - GitHub Actions
name: linters
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Checkout code
uses: actions/checkout@v2
- name: Install mockgen
run: |
go install github.com/golang/mock/mockgen@v1.7.0-rc.1
- name: Install gopls
run: |
go install golang.org/x/tools/gopls@latest
- name: Install guru
run: |
go install golang.org/x/tools/cmd/guru@latest
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: protoc-gen deps
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1
go install github.com/mitchellh/protoc-gen-go-json@v1.1.0
- name: Install protolint
run: |
go install github.com/yoheimuta/protolint/cmd/protolint@v0.43.2
- name: Run required linters in .golangci.yml plus hard-coded ones here
run: make -w lint