Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
Set up CI with Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
azure-pipelines[bot] committed Oct 11, 2018
1 parent c8e153b commit 149b071
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions azure-pipelines.yml
@@ -0,0 +1,32 @@
# PHP
# Test and package your PHP application.
# Add steps that run tests, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/php

pool:
vmImage: 'Ubuntu 16.04'

variables:
phpVersion: 7.2

steps:
- script: |
sudo update-alternatives --set php /usr/bin/php$(phpVersion)
sudo update-alternatives --set phar /usr/bin/phar$(phpVersion)
sudo update-alternatives --set phpdbg /usr/bin/phpdbg$(phpVersion)
sudo update-alternatives --set php-cgi /usr/bin/php-cgi$(phpVersion)
sudo update-alternatives --set phar.phar /usr/bin/phar.phar$(phpVersion)
php -version
displayName: 'Use PHP version $(phpVersion)'

- script: composer install --no-interaction --prefer-dist
displayName: 'composer install'

- script: composer test-coverage
displayName: 'Run tests with phpunit'

- script: composer cs-check
displayName: 'Run cs checks'

- script: php vendor/bin/php-coveralls -v
displayName: 'Code coverage'

0 comments on commit 149b071

Please sign in to comment.