Fix Reset buttons behavior for Latency and Max RPS filters #6524
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: Build | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| paths-ignore: | |
| - "LICENSE*" | |
| - "DOCKERFILE*" | |
| - "**.gitignore" | |
| - "**.md" | |
| - "**.txt" | |
| - ".github/ISSUE_TEMPLATE/**" | |
| - ".github/dependabot.yml" | |
| - "docs/**" | |
| permissions: # set contents: read at top-level, per OpenSSF ScoreCard rule TokenPermissionsID | |
| contents: read | |
| jobs: | |
| prepare: | |
| uses: ./.github/workflows/prepare.yml | |
| build: | |
| needs: prepare | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25.3" | |
| - name: Build | |
| run: make build/compile | |
| - name: Registry unit tests | |
| run: make test-cover | |
| - name: Catalog unit tests | |
| run: make -C catalog test-cover |