Skip to content

🌱 Add experiment on using vLLM as KubeStellar's workloads #32

🌱 Add experiment on using vLLM as KubeStellar's workloads

🌱 Add experiment on using vLLM as KubeStellar's workloads #32

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- "release-*"
jobs:
ci-checks:
runs-on: ubuntu-latest
name: CI Checks
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Lint
run: find . -type f -name 'go.mod' -execdir go fmt ./... \;
- name: Static analysis
run: find . -type f -name 'go.mod' -execdir go vet ./... \;
- name: Build
run: find . -type f -name 'go.mod' -execdir go build -v ./... \;
- name: Test
run: find . -type f -name 'go.mod' -execdir go test -v ./... \;