PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Slawomir Kaleta   Dframe Database   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Dframe Database
Access a MySQL database using PDO
Author: By
Last change: Update of .travis.yml
Date: 3 years ago
Size: 518 bytes
 

Contents

Class file image Download
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4snapshot services: - mysql before_install: - mysql -e 'CREATE DATABASE IF NOT EXISTS test;' - mysql -u root --password="" test < tests/data/db.sql addons: apt: sources: - mysql-5.7-trusty packages: - mysql-server - mysql-client # We don't want to run linux commands as super user sudo: false # Tell Travis CI to monitor only 'master' branch branches: only: master install: composer install script: - vendor/bin/phpunit