Add log page to document ldap.log and ldap_search.log #169
Workflow file for this run
This file contains 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.7', '3.8', '3.9', '3.10', '3.11'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Fetch Dependencies | |
run: sudo pip3 install -r requirements.txt | |
- name: Generate Docs | |
run: make SPHINXOPTS="-W --keep-going" |