[Feature] Support adding an observer role in FE to improve query load balancing and scale read workloads #345
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: ACTION Run make test | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - 'pkg/**' | |
| jobs: | |
| operator: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.22 | |
| - name: Call make ci-manifests | |
| run: make ci-manifests | |
| - name: Call make test | |
| run: make test |