mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-04 00:51:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			439 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			439 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
name: YAML lint
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [dev, beta, release]
 | 
						|
    paths:
 | 
						|
      - "**.yaml"
 | 
						|
      - "**.yml"
 | 
						|
  pull_request:
 | 
						|
    paths:
 | 
						|
      - "**.yaml"
 | 
						|
      - "**.yml"
 | 
						|
 | 
						|
jobs:
 | 
						|
  yamllint:
 | 
						|
    name: yamllint
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: Check out code from GitHub
 | 
						|
        uses: actions/checkout@v4.2.2
 | 
						|
      - name: Run yamllint
 | 
						|
        uses: frenck/action-yamllint@v1.5.0
 | 
						|
        with:
 | 
						|
          strict: true
 |