New benchmark kind Perf
#44
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 inference-benchmarker | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| push: | |
| branches: | |
| - 'main' | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| branches: | |
| - "main" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| rust: | |
| name: Rust checks | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| uses: ./.github/workflows/rust.yaml | |
| build: | |
| permissions: | |
| packages: write | |
| contents: read | |
| name: Build and push docker image | |
| uses: ./.github/workflows/build.yaml | |
| needs: rust |