restic/vendor/github.com/pkg/xattr/.travis.sh
Alexander Neumann b9f0f031b6 Update dependencies
Closes #2129
2019-02-10 13:24:37 +01:00

15 lines
266 B
Bash

#!/bin/sh -e
echo "Building for Linux..."
GOOS=linux go build
echo "Building for Darwin..."
GOOS=darwin go build
echo "Building for FreeBSD..."
GOOS=freebsd go build
echo "Running tests..."
go vet
go test -v -race -coverprofile=coverage.txt -covermode=atomic