mirror of
				https://kkgithub.com/actions/setup-python.git
				synced 2025-11-04 12:44:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			280 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			280 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Lint YAML
 | 
						|
on: [pull_request]
 | 
						|
jobs:
 | 
						|
  lint:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@master
 | 
						|
    - name: Lint action.yml
 | 
						|
      uses: ibiqlik/action-yamllint@master
 | 
						|
      with:
 | 
						|
        file_or_dir: action.yml
 | 
						|
        config_file: yaml-lint-config.yml
 |