Removed omitempty from member config priority #2305
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: Go | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
UnitTests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Test api | |
run: go test -v ./api/... | |
- name: Test cmd | |
run: go test -v ./cmd/... | |
- name: Test controllers | |
run: go test -v ./controllers/... | |
- name: Test pkg | |
run: go test -v ./pkg/... | |
- name: Test mongotester | |
run: go test -v ./test/e2e/util/mongotester/... | |
- name: Check licenses | |
run: make check-licenses |