aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/lint-docs.yaml
blob: cc7be0a752dcdf0587f5bbfe9fbf9cffdf5c468e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Test documentation
on:
  pull_request:

jobs:
  lint-docs:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Install hugo
        run: |
          sudo apt-get update -y
          sudo apt-get install -y hugo
      - name: Run hugo
        run: |
          cd docs
          hugo --panicOnWarning --renderToMemory