Skip to content

fixed encoding of deposit data #149

fixed encoding of deposit data

fixed encoding of deposit data #149

Workflow file for this run

name: Build CLIs
on:
push:
branches:
- master
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v4
- name: 🏗️ Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22.10"
- name: 🛠 Build packages
run: go build ./...
- name: 🧹 Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.62.2
args: ./cli ./sidecar ./shared
- name: 🧑‍🔬 Run tests
run: go test ./...
- name: 🛠️ Build CLI
run: go build -o ssv-dkg ./cli/cmd/main.go
- name: 🛠️ Build sidecar
run: go build -o ssv-sidecar ./sidecar/cmd/main.go