Merge pull request #1179 from Gerg-L/typos #648
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@v5 | |
| 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 |