This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### ABOUT THIS SCRIPT | |
# This script uses your Twitter Data and will output charts informing you about Engagement Rates, Click Activities etc. by "Time of Day" and "Day of Week". | |
# You can get your Twitter Data if you have an offical Twitter Ads account: http://ads.twitter.com/user/*/tweets | |
# The above link only works if you already have a Twitter Ads account. | |
# More information can be found in the original blog post about this script (by Tomasz Tunguz): http://tomtunguz.com/twitter-best-practices/ | |
### CONTRIBUTIONS | |
# Original author: Tomasz Tunguz – https://github.com/ttunguz | |
# Improved labeling and configuration, extended documentation: Clemens Kofler and Manuel Weiss – https://github.com/clemens + https://github.com/manualwise |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- type: parallel | |
steps: | |
- service: app | |
command: vendor/bin/phpunit tests/Auth/ | |
- service: app | |
command: vendor/bin/phpunit tests/Broadcasting/ | |
- service: app | |
command: vendor/bin/phpunit tests/Bus/ | |
- service: app | |
command: vendor/bin/phpunit tests/Cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- type: serial | |
steps: | |
- type: serial | |
steps: | |
- service: build | |
command: composer install --prefer-source --no-interaction | |
- type: parallel | |
steps: | |
- service: test | |
command: vendor/bin/phpunit tests/Auth/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
# authenticate to google cloud | |
codeship_google authenticate | |
# set compute zone | |
gcloud config set compute/zone us-central1-a |