This repository was archived by the owner on Jul 14, 2026. It is now read-only.
change the json field name of NSID of LvolConnectResp #318
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: Unit and Sanity Tests | |
| on: | |
| push: | |
| branches: ['**'] | |
| workflow_dispatch: | |
| jobs: | |
| unit-test: | |
| name: Unit Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Tidy Go modules | |
| run: go mod tidy | |
| - name: Test | |
| run: make test SKIP_TESTS=TestSanity | |