You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							643 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							27 lines
						
					
					
						
							643 B
						
					
					
				
								name: Check templates
							 | 
						|
								permissions: {}
							 | 
						|
								
							 | 
						|
								on: [ push, pull_request ]
							 | 
						|
								
							 | 
						|
								jobs:
							 | 
						|
								  docker-templates:
							 | 
						|
								    name: Validate docker templates
							 | 
						|
								    runs-on: ubuntu-24.04
							 | 
						|
								    timeout-minutes: 30
							 | 
						|
								
							 | 
						|
								    steps:
							 | 
						|
								      # Checkout the repo
							 | 
						|
								      - name: "Checkout"
							 | 
						|
								        uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
							 | 
						|
								        with:
							 | 
						|
								          persist-credentials: false
							 | 
						|
								      # End Checkout the repo
							 | 
						|
								
							 | 
						|
								      - name: Run make to rebuild templates
							 | 
						|
								        working-directory: docker
							 | 
						|
								        run: make
							 | 
						|
								
							 | 
						|
								      - name: Check for unstaged changes
							 | 
						|
								        working-directory: docker
							 | 
						|
								        run: git diff --exit-code
							 | 
						|
								        continue-on-error: false
							 | 
						|
								
							 |