You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			370 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			23 lines
		
	
	
		
			370 B
		
	
	
	
		
			YAML
		
	
| kind: pipeline
 | |
| type: docker
 | |
| name: CI Test Pipeline
 | |
| 
 | |
| steps:
 | |
| - name: greeting
 | |
|   image: alpine
 | |
|   commands:
 | |
|   - echo "Welcome to drone\n"
 | |
| 
 | |
| - name: Unit Tests
 | |
|   image: python:3.8-buster
 | |
|   commands:
 | |
|     - bash -c './ci_scripts/run_unit_tests.sh'
 | |
| 
 | |
| trigger:
 | |
|   event:
 | |
|     exclude:
 | |
|     - pull_request
 | |
| 
 | |
| # Secrets used to pull private images
 | |
| image_pull_secrets:
 | |
|   - dockerconfigjson |