Order deposit data from HD wallet accounts by path. #379
This file contains 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: 'golangci-lint' | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
workflow_dispatch: | |
permissions: | |
contents: 'read' | |
jobs: | |
golangci: | |
name: 'lint' | |
runs-on: 'ubuntu-24.04' | |
steps: | |
- uses: 'actions/setup-go@v5' | |
with: | |
cache: false | |
go-version: '^1.22' | |
- uses: 'actions/checkout@v4' | |
- uses: 'golangci/golangci-lint-action@v6' | |
with: | |
only-new-issues: true |