Skip to content

Merge pull request #112 from kcalvinalvin/2024-01-11-rpc-for-getting-… #334

Merge pull request #112 from kcalvinalvin/2024-01-11-rpc-for-getting-…

Merge pull request #112 from kcalvinalvin/2024-01-11-rpc-for-getting-… #334

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20", "1.21"]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Install Linters
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2
- name: Test
run: sh ./goclean.sh