Skip to content

feat(server): add graceful shutdown handling for SIGTERM and SIGINT #105

feat(server): add graceful shutdown handling for SIGTERM and SIGINT

feat(server): add graceful shutdown handling for SIGTERM and SIGINT #105

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '>=1.25'
-
# Add support for more platforms with QEMU (optional)
# https://github.com/docker/setup-qemu-action
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Download dependencies
run: go mod download
- name: Verify dependencies
run: go mod verify
- name: Run unit tests
run: |
go test -v -race ./...