docs: fix broken links for old GUC settings #707
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: Docs | |
on: | |
push: | |
branches: | |
- main | |
- v[0-9]+ | |
pull_request: | |
branches: | |
- main | |
- v[0-9]+ | |
jobs: | |
build: | |
name: Build docs | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | |
- run: nix-env -f docs/default.nix -iA build | |
- run: postgrest-docs-build | |
spellcheck: | |
name: Run spellcheck | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | |
- run: nix-env -f docs/default.nix -iA spellcheck | |
- run: postgrest-docs-spellcheck | |
dictcheck: | |
name: Run dictcheck | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | |
- run: nix-env -f docs/default.nix -iA dictcheck | |
- run: postgrest-docs-dictcheck | |
linkcheck: | |
name: Run linkcheck | |
if: github.base_ref == 'main' | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | |
- run: nix-env -f docs/default.nix -iA linkcheck | |
- run: postgrest-docs-linkcheck | |