fix: deprecate embedded tokenizers #800
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: Run Examples Test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| run-examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v6 | |
| - name: Extract Go version from go.mod | |
| run: sed -En 's/^go (.*)$/GO_VERSION=\1/p' go.mod >> $GITHUB_ENV | |
| - name: Set up Go with cache | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "${{ env.GO_VERSION }}" | |
| cache-dependency-path: ./go.sum | |
| - name: Download Go dependencies | |
| run: go mod download | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build UDS tokenizer image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: services/uds_tokenizer | |
| tags: llm-d-uds-tokenizer:e2e-test | |
| load: true | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - name: Make verify-examples.sh executable | |
| run: chmod +x hack/verify-examples.sh | |
| - name: Run verify-examples.sh | |
| run: ./hack/verify-examples.sh |