mirror of
				https://github.com/DaoCloud/public-image-mirror.git
				synced 2025-10-31 13:49:22 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			316 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			316 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "Check Image"
 | |
| on:
 | |
|   workflow_dispatch:
 | |
| 
 | |
|   schedule:
 | |
|     - cron: "0 0 * * *"
 | |
| 
 | |
| jobs:
 | |
|   check:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - uses: actions/checkout@v2
 | |
|       - name: Install dependencies
 | |
|         run: |
 | |
|           pip3 install yq
 | |
|       - name: Check
 | |
|         run: |
 | |
|           ./scripts/check-image.sh
 |