From cf06e9c48b984a2b7fa63ca254a196d2a0c911f6 Mon Sep 17 00:00:00 2001 From: Jan Hartman Date: Tue, 1 Sep 2026 12:43:01 +0000 Subject: [PATCH] chore/dev: Retire dead CI config and modernize the Go build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Nothing has been verifying that this repository compiles: its CI config points at a service that no longer builds it. Replace that with a GitHub Actions workflow that builds, vets, and race-tests on Go 1.26, and — where the repository still predates Go modules — add go.mod/go.sum with a canonical module path and fix the code that no longer compiles on a modern toolchain. --- .travis.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 175dedf..0000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -sudo: false -language: go -go: - - "1.14.x" -script: - - GO111MODULE=on go get -t -v ./... - - diff -u <(echo -n) <(gofmt -d -s .) - - GO111MODULE=on go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... -after_success: - - bash <(curl -s https://codecov.io/bash) \ No newline at end of file