Merge pull request #463 from NetApp/462-password-not-set-in-security_… #1569
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 Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - "integration/main" | |
| - "release*" | |
| pull_request: | |
| branches: | |
| - "integration/main" | |
| - "release*" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.21' | |
| - name: Build | |
| run: | | |
| export GOFLAGS=-buildvcs=false | |
| ./scripts/unittest.sh |