Skip to content

Use Smoothed Round Trip Time (SRTT) to estimate Conn.Latency #48

Use Smoothed Round Trip Time (SRTT) to estimate Conn.Latency

Use Smoothed Round Trip Time (SRTT) to estimate Conn.Latency #48

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v6
- name: Set up Go 1.25
uses: actions/setup-go@v6
with:
go-version: '1.25'
id: go
- name: Get dependencies
run: |
mkdir -p $GOPATH/bin
export PATH=$PATH:$GOPATH/bin
- name: Vet
run: go vet ./...
- name: Staticcheck
run: |
go get honnef.co/go/tools/cmd/staticcheck
GOBIN=$PWD/bin go install honnef.co/go/tools/cmd/staticcheck
./bin/staticcheck ./...
- name: Build
run: go build -o go-nethernet_exe -v .