cli: use dz ip to find user during status lookup #4852
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: go | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| go-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - run: sudo apt install -y libpcap-dev build-essential | |
| - run: make go-build | |
| go-lint: | |
| runs-on: ubuntu-latest | |
| needs: go-build | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - run: sudo apt install -y libpcap-dev | |
| - uses: golangci/golangci-lint-action@v8 | |
| - run: make go-lint | |
| go-test: | |
| runs-on: ubuntu-24.04-16c-64gb | |
| needs: go-build | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - run: sudo sysctl -w net.ipv4.ping_group_range="0 0" | |
| - run: sudo apt install -y libpcap-dev | |
| - run: make go-test nocontainertest | |
| go-container-test: | |
| runs-on: ubuntu-latest | |
| needs: go-build | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - uses: docker/setup-buildx-action@v3 | |
| - run: make go-container-test | |
| go-fuzz: | |
| runs-on: ubuntu-latest | |
| needs: go-build | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - run: make go-fuzz |