revert(nexus): remove gateway token support for amplifier (ref: bc0ae8fd, 1848c6b4) #7417
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting | |
on: | |
- pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Setup Golang with cache | |
uses: magnetikonline/action-golang-cache@v2 | |
with: | |
go-version: 1.23 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install golangci-lint | |
run: make prereqs | |
- name: Go Lint | |
run: make lint | |
- name: Proto lint | |
run: make proto-lint |