From a43996dc4c87b7a0170aa13bfa70f3953e3f4c05 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Mon, 12 Aug 2024 17:02:58 -0400 Subject: [PATCH] Delete .travis.yml --- .travis.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 3d4c115..0000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -language: julia -sudo: required -os: - - linux - - osx -julia: - - 1 - - nightly -matrix: - allow_failures: - - julia: nightly -notifications: - email: false -addons: - apt: - packages: - - xvfb - - xauth - - libgtk-3-dev -script: - - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - if [[ `uname` = "Linux" ]]; then TESTCMD="xvfb-run julia"; else TESTCMD="julia"; fi - - $TESTCMD -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)' -after_success: - - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'