Skip to content

Commit b58c013

Browse files
committed
address PR commits
1 parent 96c2d3f commit b58c013

File tree

4 files changed

+6
-25
lines changed

4 files changed

+6
-25
lines changed

.github/actions/docker-build-and-push/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ runs:
4040
--build-arg KV_CACHE_MANAGER_TOKEN=${{ inputs.kv-cache-manager-token }} \
4141
-t ${{ inputs.registry }}/${{ inputs.image-name }}:${{ inputs.tag }} \
4242
--push .
43-
shell: bash
43+
shell: bash

.github/actions/go-test/action.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/ci-pr-checks.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ jobs:
1818

1919
- name: Set up go with cache
2020
uses: actions/setup-go@v5
21+
run: sed -En 's/^go (.*)$/GO_VERSION=\1/p' go.mod >> $GITHUB_ENV
2122
with:
22-
go-version: '1.24.0'
23+
go-version: "${{ env.GO_VERSION }}"
2324
cache-dependency-path: ./go.sum
2425

2526
- name: Configure Git to use token for private modules
@@ -36,12 +37,12 @@ jobs:
3637
version: 'v2.1.6'
3738
args: "--config=./.golangci.yml"
3839

39-
- name: Run go test
40+
- name: Run make test
4041
shell: bash
4142
run: |
4243
make test
4344
44-
- name: Run go build
45+
- name: Run make build
4546
shell: bash
4647
run: |
4748
make build

.github/workflows/ci-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
image-name: ${{ steps.version.outputs.project_name }}
4646
registry: ghcr.io/llm-d
4747
github-token: ${{ secrets.GHCR_TOKEN }}
48-
kv-cache-manager-token: ${{ secrets.KV_CACHE_MANAGER_TOKEN }}
48+
kv-cache-manager-token: ${{ secrets.KV_CACHE_MANAGER_TOKEN }}

0 commit comments

Comments
 (0)