mirror of
				https://github.com/TheLartians/ModernCppStarter.git
				synced 2025-10-31 10:11:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			319 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			319 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Docker
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|   pull_request:
 | |
|     branches:
 | |
|       - master
 | |
| 
 | |
| jobs:
 | |
|   build-docker:
 | |
| 
 | |
|       runs-on: ubuntu-latest
 | |
| 
 | |
|       steps:
 | |
|       - uses: actions/checkout@v2
 | |
| 
 | |
|       - name: Build
 | |
|         run: docker-compose build
 | |
| 
 | |
|       - name: Run
 | |
|         run: docker-compose run application
 |