Skip to content

Commit

Permalink
feat: add basic travis.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
mtuchi committed Oct 10, 2019
1 parent 55a442a commit 54ac4fb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
language: php

php:
- 7.2

before_script:
- cp .env.example .env
- composer self-update
- composer install --no-interaction
- php artisan key:generate
- php artisan migrate

script:
- vendor/bin/phpunit

before_install:
- mysql -e 'create database laravel;'

services:
- mysql

cache:
- directories:
- vendor
- node_modules

0 comments on commit 54ac4fb

Please sign in to comment.