Skip to content

Commit

Permalink
ci: Verify the HTML documentation is up-to-date
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakuje committed Mar 4, 2024
1 parent 5a9b18a commit 543b437
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Make sure HTML files are updated

on:
pull_request:
paths:
- '**.xml'
- '**.xml.in'
- .github/workflows/doc.yml

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- run: |
./bootstrap &&
./configure --prefix="/usr" &&
cd doc/tools &&
rm tools.html &&
make tools.html &&
cd ../files &&
rm files.html &&
make files.html &&
cd ../../ &&
git diff

0 comments on commit 543b437

Please sign in to comment.