mirror of
				https://github.com/TheLartians/ModernCppStarter.git
				synced 2025-10-31 10:11:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Standalone
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|   pull_request:
 | |
|     branches:
 | |
|       - master
 | |
| 
 | |
| jobs:
 | |
|   build:
 | |
| 
 | |
|     runs-on: ubuntu-latest
 | |
|     
 | |
|     steps:
 | |
|     - uses: actions/checkout@v1
 | |
|     
 | |
|     - name: configure
 | |
|       run: cmake -Hstandalone -Bbuild
 | |
| 
 | |
|     - name: build
 | |
|       run: cmake --build build -j4
 | |
| 
 | |
|     - name: run
 | |
|       run: ./build/Greeter
 |