Skip to content

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /docs #595

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /docs

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /docs #595

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.24"
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