-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
executable file
·32 lines (24 loc) · 1.13 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
#
# This file is part of the `src-run/augustus-silencer-library` project.
#
# (c) Rob Frawley 2nd <[email protected]>
#
# For the full copyright and license information, view the LICENSE.md
# file distributed with this source code.
#
sudo : false
language : php
php : [ 8.0 ]
git:
depth : 3
env:
global:
- secure: "OvAJaHZ9rK40os+zFSG8eNZO7ciOokQevBglFwf2uoRI38rdeIeuuAKBfcru5SzAbjnpJNZ1EN59QCyBpZn0d2M+cwbvIpWu3BSoaeSmgVQkNzhc290WgL3/agupk1uMK65J52szCKvx9QNPGK6e9R7ECjWcakd72mgwQfnQpL/9el//JWzUsNQW5byET1nShY8ZVamy79c+9tbwrZjOMvu7asitGr7tTk3JSH0EzJqPDnWvPsBVkQoVJlZBwWOwMp/dI/brshoNLW4nS9zt+6WhO7TuJMQdVsUwtMoiAb89oVgjN8KfL7jAVMnZaU1GqWEDYjTo8r19snx8WwWlYQd7CEoGG3hNBrvo0Dk+w8DxCLCDZL0rZYQrDP8ZNDAjm3kARZHQZWM1Yx/HNKzY7xYsh8vEKPHS9hL8oGEbfijdmqpHdfUnFnwgDkEf2fBonjXSEKD9m2xkkHj+fxgwZf2F8/oO0ZNXK6rMx2VbrK6gzbBWiHrfJ7ncaf+XPKbAGNOlzmCURstTp7IJyaGFNdn9SCyE7enzzJH9meUsqg017sYLPs8xjVqQTLoE8LIeABuuec7mnQ5x4hlSwAakcpYK/qfDmjRNqNp87n6O6GSryr6bOMDXyoKTlZ29mUezLTCYeEAJlI0pJSbmufaMz/9Gqca2adBvH68AEfCPlI4="
install :
- bash .bldr/bldr -b up
script :
- bin/simple-phpunit || bin/phpunit
after_script :
- bash .bldr/bldr -b down
...