From ad6ed7a029d1ebe40d1c3555bb308a573cbe93ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Mengu=C3=A9?= Date: Tue, 7 Jul 2020 00:19:21 +0200 Subject: [PATCH] Travis-CI: set go_import_path Set go_import_path to tell Travis-CI where to checkout the code, so the Travis build can also work on forks. This is important when building without Go modules support. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index afc7c09b..02a56ef8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ language: go +go_import_path: github.com/mattn/go-sqlite3 + os: - linux - osx