From 4c2df3cc4614a8001c1afdebcbda0fcf6e045719 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Mengu=C3=A9?= Date: Tue, 21 Jul 2020 10:00:10 +0200 Subject: [PATCH] Travis-CI: set go_import_path (#829) 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 a72d6fdc..66b682ee 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ language: go +go_import_path: github.com/mattn/go-sqlite3 + os: - linux - osx