Catalog: Round latency to 2 decimal places, remove commented out code for average accuracy on cards #1062
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: Test UI container image build and deployment | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - "clients/ui/**" | |
| - ".github/workflows/**" | |
| - "!LICENSE*" | |
| - "!DOCKERFILE*" | |
| - "!**.gitignore" | |
| - "!**.md" | |
| - "!**.txt" | |
| permissions: # set contents: read at top-level, per OpenSSF ScoreCard rule TokenPermissionsID | |
| contents: read | |
| env: | |
| IMG_ORG: kubeflow | |
| IMG_REPO: model-registry/ui | |
| PUSH_IMAGE: false | |
| BRANCH: ${{ github.base_ref }} | |
| jobs: | |
| build-image: | |
| permissions: | |
| contents: read | |
| packages: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| # checkout branch | |
| - uses: actions/checkout@v5 | |
| - name: Build UI Image | |
| shell: bash | |
| run: ./scripts/build_deploy.sh |