offer the Nix manual as a single page again #931
Workflow file for this run
This file contains 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: "Test" | |
on: | |
push: {} | |
pull_request: {} | |
jobs: | |
linkcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: cachix/install-nix-action@v26 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: nix-dev | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Run linkcheck | |
run: nix-shell --run "make linkcheck" | |
codeblock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: cachix/install-nix-action@v26 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: nix-dev | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Run builder | |
run: nix-shell --run "make dummy" | |
- name: Test code blocks | |
run: nix-shell --run "./run_code_block_tests.sh" |