feat(wasm)!: add wasm support #6704
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: | |
strategy: | |
matrix: | |
go-version: | |
- 1.21 | |
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 |