mirror of
				https://github.com/OpenAPITools/openapi-generator.git
				synced 2025-11-04 10:43:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			313 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			313 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: php
 | 
						|
# Jammy Jellyfish environment has preinstalled PHP 8.1
 | 
						|
# Focal Fossa doesn't fit since it contains preinstalled PHP 7.4 only
 | 
						|
# https://docs.travis-ci.com/user/reference/jammy/#php-support
 | 
						|
dist: jammy
 | 
						|
os:
 | 
						|
  - linux
 | 
						|
php:
 | 
						|
  - 8.1
 | 
						|
  - 8.2
 | 
						|
before_install: "composer install"
 | 
						|
script: "vendor/bin/phpunit"
 |