mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
21 lines
427 B
YAML
21 lines
427 B
YAML
|
name: NixOS manual checks
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches-ignore:
|
||
|
- 'release-**'
|
||
|
paths:
|
||
|
- 'nixos/**/*.xml'
|
||
|
- 'nixos/**/*.md'
|
||
|
|
||
|
jobs:
|
||
|
tests:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: cachix/install-nix-action@v12
|
||
|
- name: Check DocBook files generated from Markdown are consistent
|
||
|
run: |
|
||
|
nixos/doc/manual/md-to-db.sh
|
||
|
git diff --exit-code
|