Skip to content

Implement initial version of bots and develop further HD wallet capabilities #652

Implement initial version of bots and develop further HD wallet capabilities

Implement initial version of bots and develop further HD wallet capabilities #652

Workflow file for this run

name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
main-pipeline:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "23.x"
- name: Install protoc-gen-go
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.30.0
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0
- name: Generate protobuf files
run: make protobuf
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: 'v1.60.2'
- name: Build Node
run: make node
- name: Build Miner
run: make miner
- name: Build NESPV
run: make nespv
- name: Build CLI
run: make cli
- name: Test code
run: make test