This repository was archived by the owner on Oct 13, 2025. It is now read-only.
Dust off OpenBSD bits #397
Workflow file for this run
This file contains hidden or 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: Generate Documentation | |
| on: | |
| pull_request | |
| jobs: | |
| generate: | |
| if: github.repository == 'zeek/zeek-docs' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - 'ubuntu-latest' | |
| - 'macos-latest' | |
| python-version: | |
| - '3.9' | |
| - '3.10' | |
| - '3.11' | |
| - '3.12' | |
| - '3.13' | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Fetch Dependencies | |
| run: pip3 install -r requirements.txt | |
| - name: Generate Docs | |
| run: make SPHINXOPTS="-W --keep-going" |