1
0
Fork 0

Adding upstream version 1.2.3.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-22 09:45:13 +02:00
parent 3a3aa427d7
commit e7ed09875d
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
58 changed files with 3068 additions and 0 deletions

23
.travis.yml Normal file
View file

@ -0,0 +1,23 @@
language: go
os:
- linux
- osx
env:
- GO111MODULE=on
install:
- go version
- go env
- go get -t -d -v ./...
script:
- go build ./selfupdate/
- go build ./cmd/selfupdate-example/
- go build ./cmd/detect-latest-release/
- go build ./cmd/go-get-release/
- |
if [[ "${GITHUB_TOKEN}" != "" ]]; then
go test -v -race -coverprofile=coverage.txt ./selfupdate
else
go test -v -race -short ./selfupdate
fi
after_success:
- if [ -f coverage.txt ]; then bash <(curl -s https://codecov.io/bash); fi