Skip to content

add network stats

add network stats #100

Workflow file for this run

name: Test for the server/ directory
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "server/go.mod"
cache: true
- name: Run server Makefile tests
run: make test
working-directory: server