README: clarify init-wallet behavior #148
Workflow file for this run
  
    
      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: CI | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| pull_request: | |
| branches: | |
| - "*" | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| # go needs absolute directories, using the $HOME variable doesn't work here. | |
| GOCACHE: /home/runner/work/go/pkg/build | |
| GOPATH: /home/runner/work/go | |
| GO_VERSION: 1.23.12 | |
| jobs: | |
| ######################## | |
| # lint code | |
| ######################## | |
| lint: | |
| name: lint code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: lint | |
| run: make lint | |
| ######################## | |
| # run unit tests | |
| ######################## | |
| unit-test: | |
| name: run unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v2 | |
| - name: setup go ${{ inputs.go-version }} | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '${{ inputs.go-version }}' | |
| cache: 'true' | |
| - name: run unit test | |
| run: make unit |