Skip to content

chore(bip32, bip39): remove "github.com/tyler-smith/go-bip32", "github.com/tyler-smith/go-bip39" with "github.com/bsv-blockchain/go-sdk" #518

chore(bip32, bip39): remove "github.com/tyler-smith/go-bip32", "github.com/tyler-smith/go-bip39" with "github.com/bsv-blockchain/go-sdk"

chore(bip32, bip39): remove "github.com/tyler-smith/go-bip32", "github.com/tyler-smith/go-bip39" with "github.com/bsv-blockchain/go-sdk" #518

name: XRPL-GO Lint and Test
on:
push:
branches: [main]
pull_request:
branches: ["**"]
jobs:
build:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.23"
cache: true
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.2.2
- name: Run linter.
run: make lint
- name: Run tests
run: make test-ci