Skip to content

Merge pull request #9 from zcstarr/patch-2 #3

Merge pull request #9 from zcstarr/patch-2

Merge pull request #9 from zcstarr/patch-2 #3

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