Step 7: Include tests (Github actions)

Code for ext_key/.github/workflows/test-documentation.yml
 avatar
user_4375421
yaml
a year ago
527 B
4
Indexable
Migration
name: test documentation  
  
on: [ push, pull_request ]  
  
jobs:  
  tests:  
    name: documentation  
    runs-on: ubuntu-latest  
    steps:  
      - name: Checkout  
        uses: actions/checkout@v4  
  
      - name: Test if the documentation will render without warnings  
        run: |  
          mkdir -p Documentation-GENERATED-temp \
          && docker run --rm --pull always -v $(pwd):/project \
             ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --fail-on-log
Editor is loading...
Leave a Comment