fix(vimdoc): update helptag reference #2432
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: "Nix build" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| workflow_call: | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install nix | |
| uses: cachix/install-nix-action@v31 | |
| - name: Setup cachix | |
| uses: cachix/cachix-action@v12 | |
| with: | |
| name: mrcjkb | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - run: nix flake check -Lv | |
| shell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install nix | |
| uses: cachix/install-nix-action@v31 | |
| - name: Setup cachix | |
| uses: cachix/cachix-action@v12 | |
| with: | |
| name: mrcjkb | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - run: nix build .#devShells.x86_64-linux.default -L |