1language: php
2# Taken from OVH
3# https://www.ovh.nl/shared-hosting/persoonlijke-shared-hosting.xml
4php:
5  - "7.4"
6  - "7.3"
7  - "7.2"
8
9env:
10  - DOKUWIKI=stable
11
12before_install:
13  - wget https://raw.github.com/splitbrain/dokuwiki-travis/master/travis.sh
14
15install:
16  - sh travis.sh
17
18script:
19  - cd _test && ./phpunit.phar --stderr --group template_strap --verbose --debug
20
21branches:
22    only:
23        - main
24        - stable
25
26notifications:
27  email:
28    - support@combostrap.com
29