mirror of
				https://github.com/NotAShelf/nyxexprs.git
				synced 2025-11-04 12:42:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Run Checks
 | 
						|
 | 
						|
on: [push, pull_request, workflow_dispatch]
 | 
						|
 | 
						|
permissions:
 | 
						|
  contents: read
 | 
						|
  id-token: write
 | 
						|
 | 
						|
jobs:
 | 
						|
  check:
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        command:
 | 
						|
          - NIXPKGS_ALLOW_INSECURE=1 nix flake check --accept-flake-config --impure
 | 
						|
          - nix run .#alejandra-custom -- -c . -e ./npins
 | 
						|
    uses: ./.github/workflows/nix.yml
 | 
						|
    with:
 | 
						|
      command: ${{ matrix.command }}
 | 
						|
 | 
						|
  build:
 | 
						|
    needs: check
 | 
						|
    uses: ./.github/workflows/build.yml
 | 
						|
    secrets: inherit
 |