From d5606f8b2a6cda246df9d0fec920914107426bb4 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 2 Nov 2021 01:31:49 +0000 Subject: [PATCH] ci(travis): remove .travis.yml config file If we're switching to GitHub Actions, there's no need to keep the Travis-CI config file around. --- .travis.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a72c15d..0000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -dist: trusty -language: php -dist: trusty - -php: - - '7.4' - - '7.3' - - '7.2' - - '7.1' - -before_install: - - composer update - -script: - - composer validate - - vendor/bin/phpunit --version - - vendor/bin/phpunit --configuration tests/phpunit.xml - -notifications: - email: - recipients: - - will.knauss@gmail.com - on_success: never - on_failure: always