Skip to content

fix nimbus client id parsing #34

fix nimbus client id parsing

fix nimbus client id parsing #34

Workflow file for this run

name: node-crawler workflow
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.4
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.56.2
- name: Vet
run: go vet ./...
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.4
- name: Test
run: go test -v ./...