Skip to content

Merge remote-tracking branch 'jshufro/jms/repomerge' #1

Merge remote-tracking branch 'jshufro/jms/repomerge'

Merge remote-tracking branch 'jshufro/jms/repomerge' #1

Workflow file for this run

name: rpctestgen
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.23
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Fill tests
working-directory: ./tools
run: make fill
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.23
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Lint
working-directory: ./tools
run: make lint