mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 11:17:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			493 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			493 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: php
 | 
						|
git:
 | 
						|
    submodules: false
 | 
						|
before_install:
 | 
						|
    - sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
 | 
						|
    - git submodule update --init --recursive
 | 
						|
before_script:
 | 
						|
    - travis_retry cd application && composer self-update
 | 
						|
    - travis_retry cd application && composer install --no-interaction --prefer-source --dev
 | 
						|
script:
 | 
						|
    - application/vendor/bin/phpunit --coverage-clover=coverage.xml
 | 
						|
after_success:
 | 
						|
    - cd application && bash <(curl -s https://codecov.io/bash)
 |