Skip to content

Merge branch 'feature/ping' of https://github.com/df-mc/go-nethernet … #225

Merge branch 'feature/ping' of https://github.com/df-mc/go-nethernet …

Merge branch 'feature/ping' of https://github.com/df-mc/go-nethernet … #225

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'
- name: Vet
run: go vet ./...
- name: Staticcheck
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
- name: Test
run: go test ./...