use Github Actions run CI
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							9a32cd2379
						
					
				
				
					commit
					e2331171b0
				
			
							
								
								
									
										19
									
								
								.github/workflows/main-ci.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								.github/workflows/main-ci.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
			
		||||
name: Docker Image CI
 | 
			
		||||
 | 
			
		||||
on: [push, pull_request]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    strategy:
 | 
			
		||||
      matrix:
 | 
			
		||||
        php_version: [72, 73]
 | 
			
		||||
        service: [php-fpm, php-worker]
 | 
			
		||||
    steps:
 | 
			
		||||
    - uses: actions/checkout@v2
 | 
			
		||||
    - name: Build the Docker image
 | 
			
		||||
      env:
 | 
			
		||||
        PHP_VERSION: ${{ matrix.php_version }}
 | 
			
		||||
      run: |
 | 
			
		||||
        cp env-example .env
 | 
			
		||||
        docker-compose build ${{ matrix.service }}
 | 
			
		||||
		Reference in New Issue
	
	Block a user