mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-11-03 20:22:21 +00:00 
			
		
		
		
	
		
			Some checks are pending
		
		
	
	Set up binary cache / cachix (default) (push) Waiting to run
				
			Set up binary cache / cachix (maximal) (push) Waiting to run
				
			Set up binary cache / cachix (nix) (push) Waiting to run
				
			Treewide Checks / Validate flake (push) Waiting to run
				
			Treewide Checks / Check formatting (push) Waiting to run
				
			Treewide Checks / Check source tree for typos (push) Waiting to run
				
			Treewide Checks / Validate documentation builds (push) Waiting to run
				
			Treewide Checks / Validate hyperlinks in documentation sources (push) Waiting to run
				
			Treewide Checks / Validate Editorconfig conformance (push) Waiting to run
				
			
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			933 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			933 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: "Set up binary cache"
 | 
						|
 | 
						|
on:
 | 
						|
  workflow_dispatch:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - main
 | 
						|
    paths-ignore:
 | 
						|
      - .github/**
 | 
						|
      - assets/**
 | 
						|
      - .gitignore
 | 
						|
 | 
						|
jobs:
 | 
						|
  cachix:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        package:
 | 
						|
          - default
 | 
						|
          - nix
 | 
						|
          - maximal
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
        name: Checkout
 | 
						|
 | 
						|
      - name: Install Nix
 | 
						|
        uses: DeterminateSystems/nix-installer-action@main
 | 
						|
 | 
						|
      - uses: cachix/cachix-action@v16
 | 
						|
        with:
 | 
						|
          authToken: ${{ secrets.CACHIX_TOKEN }}
 | 
						|
          extraPullNames: nix-community
 | 
						|
          name: neovim-flake
 | 
						|
 | 
						|
      - name: Set default git branch (to reduce log spam)
 | 
						|
        run: git config --global init.defaultBranch main
 | 
						|
 | 
						|
      - name: Validate Flakes
 | 
						|
        run: nix flake check
 | 
						|
 | 
						|
      - name: Build neovim-flake with default settings
 | 
						|
        run: nix build .#${{ matrix.package }} --print-build-logs
 |