Skip to content

revert: "fix(vald): allow processing old key transfer tx (#1986)" #6802

revert: "fix(vald): allow processing old key transfer tx (#1986)"

revert: "fix(vald): allow processing old key transfer tx (#1986)" #6802

Workflow file for this run

name: Linting
on:
- pull_request
jobs:
lint:
strategy:
matrix:
go-version:
- 1.19
os:
- ubuntu-20.04
runs-on: ${{ matrix.os }}
steps:
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/[email protected]
- name: Go Lint
run: make lint
- name: Proto lint
run: make proto-lint