mirror of
				https://github.com/Jokiller230/puzzlevision.git
				synced 2025-10-31 05:40:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			393 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			393 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "Nix: validate flake.lock"
 | |
| 
 | |
| on:
 | |
|   workflow_dispatch:
 | |
|   push:
 | |
|     paths:
 | |
|       - "**.lock"
 | |
| 
 | |
| jobs:
 | |
|   check-flake:
 | |
|     name: Check Lockfile
 | |
|     runs-on: ubuntu-latest
 | |
| 
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v4
 | |
| 
 | |
|       - name: Install Lix
 | |
|         uses: ./.github/actions/install-lix
 | |
| 
 | |
|       - name: Check flake.lock
 | |
|         run: nix run github:tgirlcloud/pkgs#locker
 |