Add new file

This commit is contained in:
R. Eric Wheeler 2021-01-21 19:49:17 +00:00
parent 38beb59fa3
commit 6ef9053301
1 changed files with 47 additions and 0 deletions

47
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,47 @@
# Select what we should cache between builds
cache:
paths:
- vendor/
before_script:
- apt-get update -yqq
- apt-get install -yqq git unzip
# Install PHP extensions
# Install & enable Xdebug for code coverage reports
- pecl install xdebug
- docker-php-ext-enable xdebug
# Install and run Composer
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install
# Set any variables we need
variables:
XDEBUG_MODE: coverage
# Run our tests
# If Xdebug was installed you can generate a coverage report and see code coverage metrics.
test:7.3:
tags:
- default
image: php:7.3
only:
- 0.x@sikofitt/generate-mac
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --coverage-text --colors=never
test:7.4:
tags:
- default
image: php:7.4
only:
- 0.x@sikofitt/generate-mac
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --coverage-text --colors=never
test:8.0:
tags:
- default
image: php:8.0
only:
- branches
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --coverage-text --colors=never