From 8dcc804df24e914452794d03e7660a65cc65db80 Mon Sep 17 00:00:00 2001 From: Johnathan Falk Date: Sun, 13 Nov 2022 11:59:56 -0500 Subject: [PATCH] fix(https://github.com/someone1/zfsbackup-go/pull/100): Add go 1.18, switch to zfs 0.8.3. Signed-off-by: Johnathan Falk --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f4833fb..d69c336 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ services: go: - 1.13.x - 1.14.x + - 1.18.x env: global: @@ -54,11 +55,11 @@ install: script: - make build - chmod +x ./integration_test.sh && ./integration_test.sh - - sudo -E TMPDIR=$TMPDIR $(which go) test -race -v -coverprofile=coverage.out -covermode=atomic -coverpkg=$(go list ./... | grep -v '/vendor/' | paste -sd, -) ./... + - sudo -E TMPDIR=$TMPDIR $(which go) test -race -v -coverprofile=coverage.out -covermode=atomic -coverpkg=$(go list ./... | grep -v '/vendor/' | paste -sd, -) ./... - make lint after_success: - sudo -E $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci -after_script: +after_script: - chmod +x ./travis-teardown.sh && ./travis-teardown.sh