Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

only add to the wg if the validator is NOT closed #506

only add to the wg if the validator is NOT closed

only add to the wg if the validator is NOT closed #506

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
cache: false
- name: Display Go version
run: go version
- name: go mod tidy (fails if changes are needed)
run: go mod tidy --diff
- name: Build
run: make build
- name: Smoketest
run: ./llm_proxy --help