add missing step in README #168
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify operator keys | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout code | |
uses: actions/checkout@v2 | |
- name: 🏗️ Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "1.22.10" | |
- name: 🛠️ Build verifier tool | |
run: go build -o key-verifier ./tools/key_verifier/cmd/main.go | |
- name: 🔍 Verify mainnet operator keys | |
run: ./key-verifier ./nodes/operators-mainnet.json | |
- name: 🔍 Verify hoodi operator keys | |
run: ./key-verifier ./nodes/operators-hoodi.json | |
- name: 🔍 Verify holesky operator keys | |
run: ./key-verifier ./nodes/operators-holesky.json |