Skip to content

Revise type VllmConfig (#346) #21

Revise type VllmConfig (#346)

Revise type VllmConfig (#346) #21

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: '1.24'
- name: check go mod tidy
run: |
go mod tidy
if [ -n "$(git status --porcelain=v2)" ]; then
echo 'You need to run `go mod tidy`' >&2
exit 1
fi
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20
with:
version: v2.8.0