From 9a444aedd2a2145a47606eb11a07956fc6c11d44 Mon Sep 17 00:00:00 2001 From: Mateusz Gozdek Date: Thu, 8 Oct 2020 11:13:47 +0200 Subject: [PATCH] .travis.yml: remove configuration From now on GitHub Actions will be used for CI. Closes #7 Signed-off-by: Mateusz Gozdek --- .travis.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0f391a0..0000000 --- a/.travis.yml +++ /dev/null @@ -1,36 +0,0 @@ -language: go - -go: - - '1.15' - - master - -git: - depth: 1 - -notifications: - email: false - -matrix: - allow_failures: - - go: master - -services: - - docker - -install: make download - -before_script: - - make install-ci - - make test-up - -script: - - make testacc - - make all-cover - -after_script: - - make cover-upload EXIT_CODE=$TRAVIS_TEST_RESULT - -# Build only master branch triggered by merge commits. Other branches should be built via PR trigger. -branches: - only: - - master