Skip to content

fix: shed load with 503 when job queue is full #104

fix: shed load with 503 when job queue is full

fix: shed load with 503 when job queue is full #104

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Format check
run: test -z "$(gofmt -l .)"
- name: Build
run: go build ./...
- name: Test
run: go test -race ./...
- name: Vet
run: go vet ./...