You've already forked docker-compose-docker
							
							
		
			
				
	
	
		
			22 lines
		
	
	
		
			356 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			356 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: 'Lint Markdown files'
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|     types:
 | |
|     - opened
 | |
|     - reopened
 | |
|     - synchronize
 | |
|   push:
 | |
|     branches:
 | |
|     - master
 | |
|   workflow_dispatch: {}
 | |
| 
 | |
| jobs:
 | |
|   markdown-lint:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - uses: actions/checkout@v5.0.0
 | |
|     - uses: DavidAnson/markdownlint-cli2-action@v20.0.0
 | |
|       with:
 | |
|         globs: '**/*.md'
 |