feat: TRTLLM+vLLM pre/postprocessing in-framework #18951
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: Copyright Checks | |
| on: | |
| pull_request | |
| jobs: | |
| copyright-checks: | |
| runs-on: ubuntu-24.04 | |
| container: | |
| image: ghcr.io/${{ github.repository }}/helm-tester:0.1.1 | |
| options: --tty | |
| volumes: | |
| - ${{ github.workspace }}:/workspace | |
| permissions: | |
| contents: read | |
| packages: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Allowlist both variants of the mounted source directory. | |
| - run: git config --global --add safe.directory /__w/dynamo/dynamo | |
| - run: git config --global --add safe.directory /workspace | |
| - run: pwsh /workspace/.github/workflows/copyright-check.ps1 | |
| env: | |
| NVBUILD_VERBOSITY: DETAILED | |
| timeout-minutes: 2 | |
| working-directory: /workspace |