Skip to content

Commit

Permalink
Replace Semaphore CI with TravisCI (#7)
Browse files Browse the repository at this point in the history
* Initial attempt at setting up TravisCI

* Add php version 7.1 to CI

* Remove semaphore CI

* Remove PHP version 7.1
  • Loading branch information
drtheuns authored Jan 15, 2020
1 parent d286bfb commit 1790b2f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 57 deletions.
52 changes: 0 additions & 52 deletions .semaphore/semaphore.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
dist: bionic
language: php

php:
- "7.2"
- "7.3"

cache:
directories:
- $HOME/.composer/cache

services:
- postgres

before_install:
- travis_retry composer self-update
- createdb -U postgres -h 127.0.0.1 apitizer_testing

install:
- travis_retry composer update --prefer-dist --no-interaction --prefer-stable --no-suggest

script:
- composer test
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1790b2f

Please sign in to comment.